0
Please help me
a=int(input()) b=int(input()) imt=a//(b**2) if imt<18.5: print("underweight") elif imt>=18.5 and imt<25.0: print("normal") elif imt>=25.0 and imt<30.0: print("overweight") elif imt>=30.0: print("obesity")
2 Answers
+ 8
Bekzat ,
> please update your post by using a tag to tell us which programming language you are going to use.
> the code you presented should be saved in playground and then linked here.
> you can improve the readability of your code by using the recommended number of *4 spaces* per indentation level.
+ 4
help you with what? what is the task? please tag the relevant programming language.
if it is the bmi task on the Python course:
â read again which data types the inputs need to be
â check the formula again
â Check the spellings of the output ahain