|
|
вернуться в форумWhy Run Time error? 1WA Python 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 Послано Rodion 5 авг 2020 17:53 because data type should be string, not integer Re: Why Run Time error? 1WA Python Послано Rodion 5 авг 2020 17:56 sorry, my bad. data type is correct, but you should input like that: a=int(input()) b=int(input()) |
|
|