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
#include <stdio.h>

typedef long long int i64;

int main()
{
    i64 a, b;
    scanf("%lld %lld", &a, &b);
    printf("%lld\n", a + b);
    printf("%lld\n", a + b);
    return 0;
}