#include<stdio.h> int main(void) { float x; int i, d; scanf("%f", &x); i = (int)x; d = (x - i) >= 0.5 ? i + 1 : i; printf("%d", d); return 0; }