#!/usr/bin/env python3 def main(): N = int(input()) p = N // 2 + 1 print((1 + p) * p // 2) return if __name__ == '__main__': main()