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

Python 3 . So strange . Runtime error (Russian plz)
Posted by Kozo Hoshino 2 Nov 2019 14:57
a = float(input("a:"))
b = float(input("b:"))
print(a+b)

Edited by author 02.11.2019 14:57

Edited by author 02.11.2019 14:59
Re: Python 3 . So strange . Runtime error (Russian plz)
Posted by Kozo Hoshino 2 Nov 2019 15:12
a = int(input())
b = int(input())
print(a+b)

Runtime error . what ?
Re: Python 3 . So strange . Runtime error (Russian plz)
You are trying to get 2 inputs but there is only one
Re: Python 3 . So strange . Runtime error (Russian plz)
Posted by RainAir 31 Mar 2021 18:15
A