Cod sursa(job #555120)
Utilizator | Data | 15 martie 2011 11:55:15 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream in("adunare.in");
int x, y;
in >> x >> y;
ofstream out("adunare.out");
out << (x + y);
}