#11353: 自己試都成功阿0.0


toby900718 (crimcon幻月)


 


#include <iostream>

using namespace std;

int main() {

int L;

while(cin>>L)
{
L%4==0 ? cout<<(L/4)*(L/4) <<endl:cout<<((L-2)/4+1)*((L-2)/4) <<endl;
}

return 0;
}