#!/bin/python3 import sys def sumOfGroup(k): # Return the sum of the elements of the k'th group. num=(k-1)*k//2 a=2*num a+=1 return k*(a+k-1) if __name__ == "__main__": k = int(input().strip()) answer = sumOfGroup(k) print(answer)