ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1000. A+B Problem

помогите пожалуйста
Posted by andrew354 6 Jul 2020 13:21
a = int(input())
b = int(input())
print(a+b)
Re: помогите пожалуйста
Posted by EagIe 6 Jul 2020 14:00
вы считываете данные из двух строк. А надо из одной.
Т.е. первые две строки надо заменить на одну строку "a, b = map(int, input().split())".