N = int(input()) # Nこのボールと、2つの仕切り # N+2 choose 2 ans = (N + 2)*(N + 1)//2 print(ans)