Cod sursa(job #1124833)
| Utilizator | Data | 26 februarie 2014 13:58:34 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main ()
{
int a,s,b;
f>>a>>b;
s=0;
s=a+b;
g<<s;
return 0;
f.close();
g.close();
}
