#include <stdio.h>#include<math.h>int main(){ double n; scanf("%lf",&n); printf("%0.0lf\n",round(n)); return 0;}
No comments