Cod sursa(job #1626513)
Utilizator | Data | 3 martie 2016 09:44:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
#include <algorithm>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b,s=0;
fin >> a >> b;
fout << a+b;
return 0;
}