Cod sursa(job #1050291)
Utilizator | Data | 8 decembrie 2013 14:29:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b;
f>>a;
f>>b;
g<<a+b;
}