1181: 【C语言训练】求函数值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:19 Solved:17

Description

按如下递归公式求函数值。
x=1时 f(x)=10;x>1时 f(x)=f(x-1)+2

Input

整型变量x

Output

f(x)

Sample Input Copy

10

Sample Output Copy

28