Difference between a number and it's reverse



b=input().strip()

print(int(b)-int(b[::-1])

Post a Comment

0 Comments