Cod sursa(job #1010681)
| Utilizator | Data | 15 octombrie 2013 13:42:35 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream>
using namespace std;
int main()
{
int s, a, b;
ifstream fin("adunare.in");
fin >> a >> b;
fin.close();
s = a + b;
ofstream fout("adunare.out");
fout << s << "\n";
fout.close();
return 0;
}
