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

5 lines
46 B
Python
Raw Permalink Normal View History

2024-10-23 11:10:43 +02:00
a = int(input())
b = int(input())
print(a+b)