#include<stdio.h> int main(void){ double n; while(scanf("%lf",&n) != EOF){ printf("%d",(int)(n)); } return 0; }