Если a=3, b=6, c=23 какой будет результат программы? a = input ()
b = input ()
c = input ()
d = a+b+c
print(d)

artiom726 artiom726    3   20.01.2021 20:26    1

Ответы
An0441 An0441  20.01.2021 20:30

a =int( input () )

b =int( input () )

c = int(input () )

d = a+b+c

print('Result is, ' + str(d))

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика