Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hour = int(input())
- week_day = input()
- if hour < 10 or hour > 18 or week_day == "Sunday":
- print("closed")
- else:
- print("open")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement