Mai intai trebuie sa te autentifici.
Cod sursa(job #695929)
Utilizator | Data | 28 februarie 2012 15:41:55 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
long a,b;
ifstream f ("suma.in");
ofstream g ("suma.out");
f>>a>>b;
g<<a+b;
return 0;
}