using System;
public class LearnModo {
public static void Main() {
// define a variable to store the age data
int age;
// prompt the user to enter their age
Console.WriteLine("Enter your age:");
/*assign the age variable what the user entres.
Note: The Console.ToInt32 is to convert the string input to an integer value */
age = Convert.ToInt32(Console.ReadLine());
// Print out the user age
Console.WriteLine("Your are " + age + " years old!");
}