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