nowcoder-python/NP/NP20.py

14 lines
222 B
Python

#!/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()