14 lines
206 B
Python
14 lines
206 B
Python
|
#!/usr/bin/env python3
|
||
|
# @author 轩辕龙儿
|
||
|
# @date 2022/10/26
|
||
|
# @file NP22.py
|
||
|
|
||
|
def solution():
|
||
|
com = input().split()
|
||
|
com.remove(com[0])
|
||
|
print(com)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
solution()
|