Cod sursa(job #1341362)
Utilizator | Data | 12 februarie 2015 17:36:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | algoritemius | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("suma.in");
ofstream g("suma.out");
int main(){
int a,b,s;
f>>a>>b;
s=a+b;
cout<<s;
f.close();
g.close();
return 0;
}