nowcoder-python/NP/NP13.py

13 lines
179 B
Python
Raw Normal View History

2022-10-25 14:05:21 +08:00
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/25
# @file NP13.py
2022-10-26 10:02:04 +08:00
def solution():
s = input()
print(s.strip())
if __name__ == "__main__":
solution()