#include<iostream> using namespace std; int n;; int main() { scanf("%d",&n); int res=n; while(n>=3) { n-=2; res++; } printf("%d",res); }