Cod sursa(job #432156)
Utilizator | Data | 1 aprilie 2010 21:55:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | X-Treme April Challenge | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
int main()
{
fin >> a >> b;
fout << a+b << endl;
fin.close();
fout.close();
return 0;
}