class Program
{
static void Main(string[] args)
{
String temp;
Double alder;


Console.WriteLi ne("how old are you?");
temp = Console.ReadLin e();
alder = Convert.ToDoubl e(temp);

if (alder <= 30)
Console.WriteLi ne("youre too young");...