using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter Your Age");
int age = Convert.ToInt32(Console.ReadLine());
if (age>=18){
Console.WriteLine("You are allowed to vote");
}
else {
Console.WriteLine("You are still a minor and you are not allowed to vote yet");