Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. x1 = int(input())
  2. y1 = int(input())
  3. x2 = int(input())
  4. y2 = int(input())
  5. if (x1 + y1) % 2 == (x2 + y2) % 2:
  6.     print('YES')
  7. else:
  8.     print('NO')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement