#!/usr/bin/env python3 #fileencoding: utf-8 L = int(input()) print(sum([L-i+1 for i in range(3,L+1,2)]))