Cod sursa(job #255030)

Utilizator EllsolanMircea Iordache Ellsolan Data 8 februarie 2009 13:54:08
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <fstream>
using namespace std;

int main()
{
    long long a, b;
    a=b=0LL;
    fstream in ("adunare.in", iostream::in);
    fstream out ("adunare.out", iostream::out);
    in>>a>>b;
    out<<a+b;
    return 0;
}