題目連結

https://zerojudge.tw/ShowProblem?problemid=a884

https://onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2443

參考文章

本題要點

Python…輸入、相減、輸出

有點水XD

參考解答

解一:

截圖 2024-06-24 下午4.16.08.png

n = int(input())
for _ in range(n):
	a, b = map(int, input(). split())
	print(a-b)

回CPE頁面

CPE