Cod sursa(job #811688)
| Utilizator | Data | 12 noiembrie 2012 20:26:01 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
int main()
{
int x;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>x;
fout<<x + 1;
fin.close();
fout.close();
return 0;
}
