Cod sursa(job #1720527)
Utilizator | Data | 22 iunie 2016 18:05:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int x,y;
in >> x >> y;
out << x+y <<"\n";
in.close();
out.close();
return 0;
}