14 lines
195 B
Python
14 lines
195 B
Python
#!/usr/bin/env python3
|
|
# @author 轩辕龙儿
|
|
# @date 2022/10/25
|
|
# @file NP10.py
|
|
|
|
def solution():
|
|
n1 = input()
|
|
n2 = input()
|
|
print(n1 + n2)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
solution()
|