using System;
public class Program
{
public static void Main()
Console.WriteLine("Write your age");
// We print on the client screen mesage "Write your name"
// Programers we programate so, we write a mesages that the client see
int age = int.Parse(Console.ReadLine());
// Int = Type variable
// int.Parse : Convert string to a Number
// Console.ReadLine: It returns the next line of characters
//of string type from the input stream
Console.WriteLine(age);
}