Cod sursa(job #749731)
Utilizator | Data | 18 mai 2012 14:52:13 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
#include<iostream>
using namespace std;
int main () {
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
f >> a >> b;
g << a+b;
return 0;
};