Cod sursa(job #969477)
Utilizator | Data | 4 iulie 2013 14:24:41 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
int main()
{
fin>>a>>b;
fout<<a+b;
return 0;
}