Cod sursa(job #2325077)
Utilizator | Data | 21 ianuarie 2019 22:14:29 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in";)
ofstream fout("adunare.out";)
long long int a, b;
fin >> a >> b;
fout << a + b;
return 0;
}