Cod sursa(job #1031967)

Utilizator TwoOfDiamondsDaniel Alexandru Radu TwoOfDiamonds Data 15 noiembrie 2013 18:41:47
Problema Dtcsu Scor 0
Compilator cpp Status done
Runda FMI No Stress 4 Marime 0.26 kb
#include <fstream>
#include <string>

using namespace std;

int main()
{
	ifstream IN("dtcsu.in");
	ofstream OUT("dtcsu.out");

	string str;
	for (int i = 0; i < 276997; i++)
	{
		IN >> str;
	}

	int x; IN >> x;

	OUT << x / 5 << endl;

	return 0;
}