Cod sursa(job #1032561)
Utilizator | Data | 15 noiembrie 2013 19:39:26 | |
---|---|---|---|
Problema | Dtcsu | Scor | 0 |
Compilator | cpp | Status | done |
Runda | FMI No Stress 4 | Marime | 0.26 kb |
#include <fstream>
using namespace std;
int x;
int main()
{
ifstream fin("dtcsu.in");
while (!fin.eof())
{
int x;
fin >> x;
}
fin.close();
ofstream fout("dtcsu.out");
fout<<x/5;
fout.close();
return 0;
}