Algorithms and Data Structures/Coding Practices

Kattis a different problem

brightlightkim 2022. 7. 20. 15:23

from sys import stdin

for line in stdin:
  x, y = map(int, line.split())
  
  print(abs(x - y))
저작자표시 (새창열림)