10^x


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 64M

Author:
Problem types
Allowed languages
C, C++, Java, Python

題目敘述

給你一個數 \(x\),請你輸出 \(10^x\) 的值。

輸入說明

一個正整數 \(x\),其中 \(0 \leq x \leq 10^6\)

輸出說明

輸出 \(10^x\) 的值。

範例測資

範例輸入 1
3
範例輸出 1
1000
範例輸入 2
20
範例輸出 2
100000000000000000000

提示

你確定 long long 存得了嗎?


Comments

There are no comments at the moment.