Cod sursa(job #205652)
Utilizator | Data | 2 septembrie 2008 13:39:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ofstream ofis("adunare.out");
ifstream ifis("adunare.in");
int main()
{
long a,b;
ifis>>a>>b;
ofis<<a+b;
return 0;
}