Shout Everyday
ABC 367Problem 49 of 50
EasyWhat to do
Takahashi has to shout his love for takoyaki at a specific time each day. He goes to sleep and wakes up at certain times, and we need to check if he is awake at the time he needs to shout.
Key Concepts
if-statements
basic comparisons
input and output
Examples
Input:
21 8 14
Output:
Yes
Input:
0 21 7
Output:
No
Tips for Beginners
- Focus on understanding the logic, not memorizing syntax
- Use print statements to debug your code
- Don't worry about input parsing - the function handles that for you
- If stuck, try writing out your solution on paper first
Python Editor
Loading Python...