# print numbers that add up to 10. (19 => 1 + 9 = 10) x = 0 for i in range(100): for j in str(i): x+=int(j) if x == 10: print(i) x = 0 # - sabz