Войти через uID
Сумма трех чисел в Python
a = int(input()) b = int(input()) c = int(input()) s = a + b + c print(s)
http://pythontutor.ru/lessons/inout_and_arithmetic_operations/