Cod sursa(job #2386691)
| Utilizator | Data | 23 martie 2019 14:30:52 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-32 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b,s;
f>>a>>b;
s=a+b;
g<<s;
f.close();
g.close();
}
