#include int main(void){ int num = 0; scanf("%d",&num); if(num % 2 == 0){ printf("%d",num / 2); }else{ printf("%d",(num / 2) + 1); } }