Cod sursa(job #1020195)
Utilizator | Data | 1 noiembrie 2013 19:46:50 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f ("adunare.in");
ofstream g ("adunare.out");
int a, b;
f >> a >> b;
g << a+b;
return 0;
}