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

1000. A+B Problem
Posted by Ilya 20 Oct 2018 14:38
Или алгоритм проверки явно не работает или я чего-то не понимаю...
Вот код на Питоне:

a = float(input("Введите первое число: "))
b = float(input("Введите второе число: "))

c = a + b
print(c)

Есть входные данные, есть переменные, которым присваиваются эти данные, есть арифметическое действие и вывод результата. Проверка показывает Runtime error...
У меня вопрос: С какого перепуга? Подскажите что я не так делаю....
Заранее спасибо!
Re: 1000. A+B Problem
Posted by Yuriy 25 Oct 2018 01:47
у тебя все получится))

Edited by author 25.10.2018 01:57

Edited by author 25.10.2018 01:57
Re: 1000. A+B Problem
Posted by ToadMonster 25 Oct 2018 13:03
http://acm.timus.ru/help.aspx?topic=python

Your mistakes:
- Task requires to output 1 number - sum. Do not output anything else (like "input first number:" string);
- Both input numbers are placed in the same input string. You trying to read one number from line;
- (not sure it's really mistake) You are using float. Int is enough for this task.
Re: 1000. A+B Problem
Posted by Yura 20 Nov 2018 21:30
не нужно писать "введите....", просто input, так в правилах написано