14 lines
206 B
Python
14 lines
206 B
Python
#!/usr/bin/env python3
|
|
# @author 轩辕龙儿
|
|
# @date 2022/10/26
|
|
# @file NP17.py
|
|
|
|
def solution():
|
|
s = input()
|
|
namelist = s.split(' ')
|
|
print(namelist)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
solution()
|