'''
Equals: a == b
Not Equals: a != b
Less than: a < b
Less than or equal to: a <= b
Greater than: a > b
Greater than or equal to: a >= b
'''
a = int(input("enter your age\n"))
if(a>=18):
print("you have eligible to vote")
elif(a<18):
print(" your not eligble to vote sorry")
No comments:
Post a Comment