Cod sursa(job #936698)

Utilizator wollyFusy Wool wolly Data 8 aprilie 2013 13:41:55
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.18 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    long long a,b;
    f>>a;
    f>>b;
    g<<a+b;
    return 0;
}