1 Star 0 Fork 0

徒步天下 / EOJ

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3417.py 359 Bytes
一键复制 编辑 原始数据 按行查看 历史
徒步天下 提交于 2018-03-08 12:24 . 重命名文件3147.py为3417.py
"""
3417. 求幂
DESCRIPTION
STATISTICS
DISCUSSION
Time limit per test: 0.5 seconds
Memory limit: 256 megabytes
输入两个整数 a 和 b,输出 ab 值。
数据保证:1≤a≤100,1≤b≤20,1≤ab≤10^18。
Examples
Input
3 2
Output
9
Input
2 3
Output
8
"""
a, b = [int(x) for x in input().split()]
print(a**b)
1
https://gitee.com/se17a/EOJ.git
git@gitee.com:se17a/EOJ.git
se17a
EOJ
EOJ
master

搜索帮助