write a python program to check whether a person is eligible for voting or not

 age=int(input("enter your age")

if age>=18:

       print("eligible for voting")

else:

      print("not eligible for voting")

Comments