Cod sursa(job #1396557)
Utilizator | Data | 22 martie 2015 18:05:11 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <iostream>
using namespace std;
main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out")
f>>a>>b;
g<<a+b<<endl;
}