ctf-resources/htb/hacktheboo2024/coding/[Very Easy] addition/solutions/solve.py

4 lines
46 B
Python

a = int(input())
b = int(input())
print(a+b)