Computer Science, asked by mahakkhilwani, 2 months ago

write a program to display "valid voter " , if the following condition is true : age of person should be >=18​

Answers

Answered by madhalaimuthucharlas
4

Answer:

age = int(input("Enter your Age:")

if age >= 18:

print ("Valid Voter")

else:

print ("Invalid Voter")

Similar questions