Advertisement
Guest User

Nick

a guest
Apr 6th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.                    
  3. public class Program
  4. {
  5.     public static void Main()
  6.     {
  7.         string firstName;
  8.         string lastName;
  9.        
  10.         Console.WriteLine("What is your first name?");
  11.         firstName = Console.ReadLine();
  12.         Console.WriteLine("What is your last name");
  13.         lastName = Console.ReadLine();
  14.        
  15.         Console.WriteLine("Hello " + firstName + " " + lastName);
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement