Cod sursa(job #682426)
| Utilizator | Data | 18 februarie 2012 23:03:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.21 kb |
#include<iostream.h>
#include<fstream.h>
using namespace std;
int main()
{
int a,b;
ifstream f("adunare.in");
f>>a>>b;
f.close();
ofstream g("adunare.out");
g<<a+b<<endl;
f.close();
return 0;
}