Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- command = input()
- counter = 0
- while command != 'END':
- if command in ['coding', 'movie', 'dog', 'cat']:
- counter += 1
- elif command in ['CODING', 'MOVIE', 'DOG', 'CAT']:
- counter += 2
- command = input()
- print('You need extra sleep' if counter > 5 else counter)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement