Advertisement
ivelin_m

PrintFirstLastName

Mar 9th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. using System;
  2.  
  3. class PrintFirstLastName
  4. {
  5. static void Main()
  6. {
  7. string firstName = "Ivelin";
  8. string lastName = "Marchev";
  9. Console.WriteLine("Hello Mr." + firstName + " " + lastName + "!");
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement