#include<bits/stdc++.h> using namespace std; int main() { int y,u=0; cin>>y; for(int h=1;h<=y;h++) { if(h%3==0) { u=u+y; } } cout<<u; return 0; }