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