#10594. 计算2的幂
计算2的幂
Description
给定非负整数$n$,求$2^n$的值,即$2$的$n$次方。
## Input Format
一个整数$n$。$0 ≤ n < 31$。
## Output Format
一个整数,即$2$的$n$次方。
```input1 3
```output1
8
给定非负整数$n$,求$2^n$的值,即$2$的$n$次方。
## Input Format
一个整数$n$。$0 ≤ n < 31$。
## Output Format
一个整数,即$2$的$n$次方。
```input1 3
```output1
8
By signing up a 算道OJ universal account, you can submit code and join discussions in all online judging services provided by us.