100 #ABC172A. [ABC172A] Calc

[ABC172A] Calc

Score : 100100 points

Problem Statement

Given an integer aa as input, print the value a+a2+a3a + a^2 + a^3.

Constraints

  • 1a101 \leq a \leq 10
  • aa is an integer.

Input

Input is given from Standard Input in the following format:

aa

Output

Print the value a+a2+a3a + a^2 + a^3 as an integer.

2
14

When a=2a = 2, we have a+a2+a3=2+22+23=2+4+8=14a + a^2 + a^3 = 2 + 2^2 + 2^3 = 2 + 4 + 8 = 14.

Print the answer as an input. Outputs such as 14.0 will be judged as incorrect.

10
1110