mukul02's blog

By mukul02, history, 4 years ago, In English

1409A - Yet Another Two Integers Problem

t = int(input())
while t > 0:
    a,b = map(int,input().split())
    print((abs(a - b) + 9) // 10)       
    t -= 1 
  • Vote: I like it
  • -18
  • Vote: I do not like it