1217: lq_python_01 n的立方

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:13 Solved:5

Description

提示信息: 整数n的立方=n×n×n。 

编程实现: 给定一个整数n,计算n的立方。 

    例如:n=2,2的立方等于8(8=2×2×2)。

输入描述: 输入一个整数n(1<=n<=1000) 

输出描述: 输出一个整数,表示n的立方

Input

2

Output

8

Sample Input Copy

2

Sample Output Copy

8