using System;
public class Program
{
public static void Main()
//Write a C# Sharp program that takes an age (for example 20) as input and prints something as "You look older than 20".
Console.WriteLine("Daniel Mosqueda Alfaro 1-E");
int age;
Console.Write("Enter your age ");
age = Convert.ToInt32(Console.ReadLine());
Console.Write("You look younger than {0} ",age);
}