#include<stdio.h> void main() { int t; long long int n,m; scanf("%d",&t); while(t--) { scanf("%lld",&n); m=n/958; printf("%lld\n",m); } }