nowcoder-python/NP/NP20.py

14 lines
222 B
Python
Raw Normal View History

2022-10-26 10:43:17 +08:00
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/26
# @file NP20.py
def solution():
nameList = input().split()
nameList.append("Allen")
print(nameList)
if __name__ == "__main__":
solution()