Cod sursa(job #2226265)
| Utilizator | Data | 30 iulie 2018 00:22:02 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a, b, s;
ifstream asib("adunare.in");
ofstream suma("adunare.out");
asib >> a >> b;
s = a + b;
suma << s;
return 0;
}
