Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- name = input('Enter your name: ')
- age = int(input('Enter your age: '))
- money = float(input('Enter your money: '))
- if age >= 18 and money >= 15:
- print('Hello, ' + name + '. Welcome to the disco!')
- else:
- print('Bye bye! You are too young or have no money!')
Add Comment
Please, Sign In to add comment