mirror of
https://github.com/fergalmoran/buttnerdz.git
synced 2025-12-22 09:29:55 +00:00
8 lines
140 B
Python
8 lines
140 B
Python
age = input('Tell me your age? > ')
|
|
print('Your age is.....')
|
|
print(age)
|
|
|
|
if int(age) < 30:
|
|
print('Young!!!')
|
|
else:
|
|
print('Old!!!!') |