Cod sursa(job #2178130)
Utilizator | Data | 19 martie 2018 10:14:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ofstream fout("adunare.out");
ifstream fin("adunare.in");
int main(){
long long a, b;
fin >> a >> b;
fout << a + b;
return 0;
}