Cod sursa(job #1766183)
Utilizator | Data | 27 septembrie 2016 17:52:59 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.15 kb |
#include <fstream>
using namespace std;
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b;
f >> a >> b;
g << a+b;
return 0; }