PY
py
1
2
3
4
5
6
7
8
9
10
# Take steps and minutes as inputs
steps = int(input())
active_minutes = int(input())
# Store the result of the operations in the variable
goal_achieved = (steps > 10000 ) or (active_minutes > 10)
# Display the result on the screen
print (goal_achieved)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run