gewicht = float(input('Gewicht (in kg) = ')) groesse = float(input('Grösse (in m) = ')) bmi = gewicht / (groesse * groesse) bmi = round(bmi,2) print('Dein BodyMassIndex: ',bmi) if bmi < 19: print ('Du hast Untergewicht!') else: if bmi <= 26: print('Du hast Normalgewicht!') print ('Du hast Übergewicht!')