nowcoder-python/NP/NP10.py

14 lines
195 B
Python
Raw Permalink Normal View History

2022-10-25 13:22:19 +08:00
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/25
# @file NP10.py
2022-10-26 10:02:04 +08:00
def solution():
n1 = input()
n2 = input()
print(n1 + n2)
if __name__ == "__main__":
solution()