nowcoder-python/NP/NP7.py

13 lines
186 B
Python
Raw Normal View History

2022-10-25 13:20:48 +08:00
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/25
# @file NP7.py
2022-10-26 10:02:04 +08:00
def solution():
num = float(input())
print(int(num))
if __name__ == "__main__":
solution()