import random
print('What is you name?')
name = input()
print(f'Hello {name}')
print('What year were you born in?')
age = 2019 - int(input())
if age > 18:
print('Wow! You so clever')
elif (age < 18):
print('Wow! You so young')
else:
print('Ok')
print('What is you surname?')
surname = input()
i = int(random.uniform(1, 3))
if i == 1:
print('Today will be hot')
elif i == 2:
print('Today will be cold')
else:
print('Today will be great')
print('Where are you from?')
city = input()
print(f'{city} is beautiful!')
print('Do you happy?')
ans = input()
if (ans == 'Yes') or (ans == 'yes'):
print('Great')
else:
print('All will be good!')
Comments
Leave a comment