#include using namespace std; int main(void){ // Your code here! int a; cin >> a; if(a%2==0){ cout << a / 2; }else{ cout << (a-1) / 2 + 1; } }