Cod sursa(job #2104863)
| Utilizator | Data | 12 ianuarie 2018 12:55:33 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b,s;
fstream f ("adunare.in");
ofstream o("adunare.out");
f>>a;
f>>b;
s=a+b;
o<<s;
return 0;
}
