#include <iostream>

int main()
{
	int n = 15 >> 2;

	std::cout << n << std::endl;
}
