19
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int age = 18; // Predefined value instead of Console.ReadLine()
8
9
if (age >= 18)
10
{
11
Console.WriteLine("You are old enough to drive.");
12
}
13
else
14
{
15
Console.WriteLine("You are not old enough to drive.");
16
}
17
}
18
}
19
Cached Result
Въведете име:
>