Cod sursa(job #1485924)
Utilizator | Data | 13 septembrie 2015 13:32:35 | |
---|---|---|---|
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;
}