Cod sursa(job #2184236)
Utilizator | Data | 23 martie 2018 21:06:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
int a,b;
ifstream i("adunare.in");
ofstream o("adunare.out");
i>>a>>b;
o<<a+b;
return 0;
}