4 lines
110 B
Python
4 lines
110 B
Python
x1, y1 = map(int, input().split())
|
|
x2, y2 = map(int, input().split())
|
|
print(1 if x1 == x2 or y1 == y2 else 2)
|