Cod sursa(job #870645)
Utilizator | Data | 3 februarie 2013 19:32:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b;
fin>>a;
fin>>b;
fin.close ();
fout<<a+b;
fout.close();
}