NP18 生成数字列表

This commit is contained in:
轩辕龙儿 2022-10-26 10:32:02 +08:00
parent 3123313dc4
commit ba1b1f31ce

11
NP/NP18.py Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/26
# @file NP18.py
def solution():
print(list(map(int, input().split())))
if __name__ == "__main__":
solution()