Cod sursa(job #437933)
Utilizator | Data | 10 aprilie 2010 11:44:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long a,b;
fin>>a;
fin>>b;
fin.close();
fout<<a+b;
fout.close();
return 0;
}