Runtime error
Разница между en1 и en2, 4 символ(ов) изменены
n = input()↵

 ↵
for i in range( int(n)):    ↵
    x ,y=map(int,input().split())↵

    if(x%2==0 and y%2==0):↵
        print('yes')   ↵

    elif(x%2!=0 and y%2!=0):↵
        print('yes')        ↵
    else:      ↵
        print('no')↵



This is my python code , it gets the verdict runtime error when i submit it. What is the problem in my code

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en2 Английский orik 2020-04-03 14:17:54 4
en1 Английский orik 2020-04-03 14:17:14 360 Initial revision (published)