#include <stdio.h> typedef unsigned short ushort; int main(void) { ushort n; scanf("%hu", &n); n >>= 3; printf("%hu\n", n); }