score=75 passmark=50 if score>=passmark: print("you have passed the exams") else: print("You need to try again") Elegible_to_vote=18 if 18>=Elegible_to_vote: print("You are eligible to vote, if you have the basic requirenent for voting") else: print("You are too young to vote, if you do not have the basic requirements") Adult=18 if Adult>=18: print("You are an Adult") else: print("You are a minor") price=20 print(price) name=input('what is your name? ') favourite_color=input('what is you favourite color? ') print(name+ 'likes' + favourite_color)