Cod sursa(job #1467339)
Utilizator | Data | 3 august 2015 11:59:47 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("in.txt");
ofstream q("out.txt");
int a,b;
f>>a;
f>>b;
q<<a+b;
return 0;
f.close();
q.close();
}