14 lines
225 B
Python
14 lines
225 B
Python
#!/usr/bin/env python3
|
|
# @author 轩辕龙儿
|
|
# @date 2022/10/26
|
|
# @file NP21.py
|
|
|
|
def solution():
|
|
nameList = input().split()
|
|
nameList.insert(0, "Allen")
|
|
print(nameList)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
solution()
|