#include int main(){ int N; scanf("%d",&N); int ans = (N/15)*4 + (N/3)*2 + (N/5)*2; printf("%d¥n",N); return 0; }