Cod sursa(job #1504591)
Utilizator | Data | 17 octombrie 2015 22:21:21 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
using namespace std;
ifstream f("a+b.in");
ofstream g("a+b.out");
int a,b;
int main()
{
f>>a>>b;
g<<a+b<<'\n';
return 0;
}