Cod sursa(job #999143)
Utilizator | Data | 19 septembrie 2013 13:39:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
fstream fin("adunare.in",ios::in);
fstream fout("adunare.out",ios::out);
fin >> a >> b;
fout << a+b;
}