Cod sursa(job #1444279)
Utilizator | Data | 29 mai 2015 15:10:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}