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 1877. Bicycle Codes

Why Run Time error? 1WA Python
Posted by CatGirl 8 Apr 2020 21:32
a,b = map(int,input().split())
if (a % 2 == 0 and b % 2 != 0):
    print("yes")
else:
    print("no")
Re: Why Run Time error? 1WA Python
Posted by Rodion 5 Aug 2020 17:53
because data type should be string, not integer
Re: Why Run Time error? 1WA Python
Posted by Rodion 5 Aug 2020 17:56
sorry, my bad. data type is correct, but you should input like that:
a=int(input())
b=int(input())