Cod sursa(job #762939)
| Utilizator | Data | 30 iunie 2012 16:08:28 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
int main()
{
std::ifstream in ( "adunare.in" );
std::ofstream out ( "adunare.out" );
unsigned int a, b;
in >> a >> b;
out << a + b;
in.close();
out.close();
return 0;
}
