// No.383 レーティング // https://yukicoder.me/problems/no/383 // using namespace std; #include #include int solve(int a, int b); int main() { int a, b; cin >> a >> b; int ans = solve(a, b); if (ans == 0) cout << ans << endl; // 0のときは±符号は付けない else cout << showpos << ans << endl; } int solve(int a, int b) { return b - a; }