Cod sursa(job #631595)
Utilizator | Data | 8 noiembrie 2011 20:36:42 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
int a, b, S;
int main()
{ S = a + b;
fout<<S;
fin.close();
fout.close();
return 0;
}