Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hour = int(input())
- day_of_week = input()
- if 10 <= hour <= 18 and day_of_week != "Sunday":
- print('open')
- else:
- print('closed')
RAW Paste Data