Cod sursa(job #1341329)
Utilizator | Data | 12 februarie 2015 17:14:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | algoritemius | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("suma.in");
ofstream g("suma.out");
int main()
{int a,b,S;
f>>a>>b;
g<<a+b;
return 0;
}