Cod sursa(job #2483452)
| Utilizator | Data | 29 octombrie 2019 19:37:13 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.31 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
void citire()
{
fin >> a > >b;
}
void rezolvare()
{
fout << a + b;
}
int main()
{
citire();
rezolvare();
return 0;
}
