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