0
no output
total = 0 age = int(input()) while age > 3 : total += 400 if age < 3 : continue print (total)
2 ответов
+ 4
Chiranjeev Singh
Doens't make sense of if age < 3 because you have already checked while age > 3 so how age could be less than 3.
+ 3
If age is greater than 3 while loop runs and gets stuck in an infinite loop , maybe you forgot to decrement age inside loop.