loops
is_old=True
is_licence=True
if is_old and is_licence:
print('you are old enough!')
else:
print('you are not of age!')
print('ok')INFO
is_old=True
is_licence=True
if is_old and is_licence:
print('you are old enough!')
else:
print('you are not of age!')
print('ok')