Cod sursa(job #2542151)
Utilizator | Data | 9 februarie 2020 16:34:02 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
int a, b; cin >> a >> b;
fout << a+b;
return 0;
}