0
Guys what's the problem in this code
# Take steps and minutes as inputs steps = int(input()) active_minutes = int(input()) # Store the result of the operations in the variable def has_achieved_goal(steps, active_minutes): return steps > 10000 or active_minutes > 30 # Display the result on the screen print (True or False )
1 ответ
+ 3
(steps>1000)or(active_minutes>30)
print(has_achieved_goal(steps, active_minutes))