#MC1001. 分解木板
分解木板
Question Background
Steve chopped some logs and decomposed them into planks. How many planks can he get?
Question Requirements
Given the number of logs n, output the number of planks s after decomposition, where s = n * 4.
Input Format
A positive integer n.
Output Format
A positive integer s.
Sample Input
9
Sample Output
36