Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- //Create console application that prints your first and last name, each at a separate line.
- class PrintFullNAme
- {
- static void Main()
- {
- Console.WriteLine("Georgi");
- Console.WriteLine("Ivanov");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement