nowcoder-python/NP/NP22.py

14 lines
206 B
Python
Raw Normal View History

2022-10-26 10:50:22 +08:00
#!/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()