| 
 | 
back to boardWhy 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 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())  |  
  | 
|