print('Welcome to drive test')
answer=input('Do you have 18 years? :').lower()
answer_i=int(answer)
if answer=='yes':
answer=input('How old are you?')
if answer_i>=18:
print('correct')
elif answer_i<=18:
print('ucorrect')
else:
print('Wrong Answer :(')