Cod sursa(job #2242366)
Utilizator | Data | 18 septembrie 2018 16:38:26 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
long long a, b;
ifstream fin ("adunare.in");
ofstream fout("adunare.out");
int main()
{
fin >> a >> b;
fout << a + b;
return 0;
}