Cod sursa(job #814699)

Utilizator tavy14tIlie Octavian tavy14t Data 15 noiembrie 2012 22:00:28
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
f>>a>>b;
g<<a+b;
return 0;
}