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")

8th Nov 2022, 12:27 PM
Bekzat
Bekzat - avatar
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.
8th Nov 2022, 12:35 PM
Lothar
Lothar - avatar
+ 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
8th Nov 2022, 12:33 PM
Lisa
Lisa - avatar