2025 iThome 鐵人賽
分享至
今天是練習cpe的Hashmat the Brave Warrior題目
#include <bits/stdc++.h> using namespace std; int main() { long x; long y; while(cin >>x >> y) { cout << abs(x - y) << endl; } return 0; }
IT邦幫忙