0
Исправьте код
a = input("сколько заняли у человека?") b = input("вы уже отдали часть долга? да/нет") if b == "нет": print("вы должны: " +a) if b == "да": c = input("сколько вы отдали?") print(a-c) Исправьте его
1 ответ
+ 3
Глеб Хомутовскс
a = int(input("how much did you borrow from the person?") )
b = input("have you already paid part of the debt? yes/no")
if b == "no":
print("you must: " +a)
if b == "yes":
c = int(input("how much did you give?") )
print(a-c)
Що не так з кодом?
input a & c change to int(input)