Cod sursa(job #1510905)
Utilizator | Data | 25 octombrie 2015 19:06:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream q("adunare.out");
int a,b;
int main()
{
f>>a>>b;
q<<a+b;
f.close();
q.close();
}