def main(): cnt =int(input()) total = 0 while(cnt > 0): total += cnt cnt -= 1 print(total) if __name__ == '__main__': main()