## https://yukicoder.me/problems/no/2902 def main(): N = int(input()) ans = (N * (N + 1)) // 2 print(ans) if __name__ == "__main__": main()