Ответ:
Не совсем понимаю зачем все эти усложнения.
Можно сделать так:
n1 = int(input())
n2 = int(input())
result = n1 + n2
print (result)
Или ещё проще:
print (n1 + n2)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Не совсем понимаю зачем все эти усложнения.
Можно сделать так:
n1 = int(input())
n2 = int(input())
result = n1 + n2
print (result)
Или ещё проще:
n1 = int(input())
n2 = int(input())
print (n1 + n2)