Cod sursa(job #2183002)
Utilizator | Data | 22 martie 2018 19:00:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream f_in("adunare.in");
ofstream f_out("adunare.out");
long a,b;
f_in>>a;
f_in>>b;
f_out<<a+b;
f_in.close();
f_out.close();
return 0;
}