Cod sursa(job #327284)
Utilizator | Data | 28 iunie 2009 02:01:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
#include<fstream.h>
void main()
{
ifstream x("Adunare.in",ios::in);
ofstream y("Adunare.out",ios::out);
unsigned int a,b;
x>>a>>b;
y<<(a+b);
x.close();
y.close();
}