Advertisement
stupid_pro

Untitled

Nov 11th, 2021
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2. class HelloWorld
  3. {
  4.     public static void Main(string[] args)
  5.     {
  6.         string Name = Console.ReadLine();
  7.         string Surname = Console.ReadLine();
  8.         string Patronymic = Console.ReadLine();
  9.         int age = Convert.ToInt32(Console.ReadLine());
  10.         Console.WriteLine("Name: " + Name + " Surname: " + Surname + " Patronymic: " + Patronymic);
  11.         Console.WriteLine("Age: " + age);
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement