Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1.  
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             var firstname = Console.ReadLine();
  14.             var lastname = Console.ReadLine();
  15.             var age = int.Parse(Console.ReadLine());
  16.             var town = Console.ReadLine();
  17.             Console.WriteLine("You are {0} {1}, a {2}-years old person from {3}.", firstname, lastname,age,town);
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement