Codey and Exit
https://www.hackerrank.com/contests/codenection-2024-final-round-closed-category/challenges/cn24-2/problem
Last updated
https://www.hackerrank.com/contests/codenection-2024-final-round-closed-category/challenges/cn24-2/problem
Last updated
1 1
2 22x1, y1 = map(int, input().strip().split())
x2, y2 = map(int, input().strip().split())
print((abs(x2-x1) + abs(y2-y1)))