#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(ll i=0;i> N; if(N%2==0) cout << N/2 << endl; else cout << (N+1)/2 << endl; return 0; }