eval-stack 0.3.4

Extremely fast async online judge evaluation system for ACM/OI contests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>

using namespace std;

typedef long long i64;

int main()
{
    i64 a, b;
    cin >> a >> b;
    cout << a + b << endl;
    cout << a + b << endl
         << endl;
    return 0;
}