Computer Science, asked by kmrsumit0, 3 months ago

.1. Write a program in Python Input age of the person, if age>=18 then show the message “Valid voter” else show the message “Invalid voter”.

Answers

Answered by madhalaimuthucharlas
2

Answer:

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

if age >= 18:

print ("Valid Voter")

else:

print ("Invalid Voter")

Similar questions