#include<stdio.h>#include<math.h>int main(){ float a; while(scanf("%f",&a)!=EOF){ printf("%.0f\n",ceil(a/3)); }}