using System;
public class Program
{
public static void Main()
int age;
Console.WriteLine("Please enter your age");
age = Convert.ToInt32(Console.ReadLine());
if (age>18){
Console.WriteLine("You are allowed to vote");
}
else if (age==18){
Console.WriteLine("You are now in the legal age, you can now vote");
else if (age<18){
Console.WriteLine("You are still a minor and not yet allowed to vote");
}}