Cod sursa(job #709051)
Utilizator | Data | 7 martie 2012 17:14:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
/*
* A+B.cpp
*
* Created on: Mar 7, 2012
* Author: ChioranAdrian
*/
#include <fstream>
using namespace std;
ifstream f("adunare.in");
int main() {
long long int a,b;
f>>a;
f>>b;
f.close();
ofstream g("adunare.out");
g<<a+b;
g.close();
return 0;
}