Mai intai trebuie sa te autentifici.
Cod sursa(job #327283)
| Utilizator | Data | 28 iunie 2009 01:57:47 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
void main()
{
ifstream x("Adunare.in");
ofstream y("Adunare.out");
unsigned int a,b;
x>>a>>b;
y<<(a+b);
x.close();
y.close();
}
