написал код и валидатор пишет, что отступ содержит табуляции
Код:
a = int(input())
b = int(input())
c = int(input())
d = int(input())
if a == c and b + 1 == d or b - 1 == d or b == d and a + 1 == c or a - 1 == c:
print('Yes')
elif a + 1 == c or a - 1 == c and b + 1 == d or b - 1 == d:
print('Yes')
else:
print('No')