Cod sursa(job #2483454)
Utilizator | Data | 29 octombrie 2019 19:38:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
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;
}