导航切换
Back
Overview
Status
Standings
Clarifications
Login
Login
Register
Start:
Jun, 21, 2017 00:00:00
2017暑期短学期题库(part 4)
End:
Jul, 05, 2017 12:00:00
Time elapsed:
Time remaining:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
AA
AB
AC
AD
AE
AF
AG
AH
AI
AJ
AK
AL
AM
AN
计算指数
2072
Time Limit:
1 s
Memory Limit:
128 MB
Submission:
187
AC:
75
Score:
1
Submit
Codes
Description
这道也是简单题 —— 对任意给定的不超过22的正整数n,要求你输出2^n。不难吧?
Input
输入在一行中给出一个不超过22的正整数n。
Output
在一行中按照格式“2^n = 计算结果”输出2^n的值。
Samples
input
Copy
5
output
Copy
2^5 = 32
Submit
Codes