/ SeriousOJ /

Record Detail

Compile Error

foo.c:1:9: fatal error: bits/stdc++.h: No such file or directory
    1 | #include<bits/stdc++.h>
      |         ^~~~~~~~~~~~~~~
compilation terminated.

Code

#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long
#define vl vector<ll>
#define vi vector<int>
#define vc vector<char>
#define bug(a) cout << #a << " : " << a << endl;
#define bug2(a, b) cout << #a << " : " << a << "   " << #b << " : " << b << endl;

void solve() {
    int a,b; cin >> a >> b;
cout << a-b;
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    // solve();
    int t; cin >> t;
    int tc=0;
    while(t--) {
        // cout << "Case " << ++tc << ":";
        solve();
        cout << endl;
    }
}

Information

Submit By
Type
Submission
Problem
P1226 Event Registration
Language
C99 (GCC 13.2.0)
Submit At
2026-01-06 09:43:06
Judged At
2026-01-06 09:43:06
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes