Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class HelloWorld
- {
- public static void Main(string[] args)
- {
- string Name = Console.ReadLine();
- string Surname = Console.ReadLine();
- string Patronymic = Console.ReadLine();
- int age = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("Name: " + Name + " Surname: " + Surname + " Patronymic: " + Patronymic);
- Console.WriteLine("Age: " + age);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement