first two and last two digit



l=input().strip()

print(abs(int(l[:2])-int(l[-2:])))

Post a Comment

0 Comments