Addition Posted Apr 11, 2025 Updated Jul 5, 2025 By ChrisPham views 1 min read Addition Contents Addition DESCRIPTIONTake in two numbers, a and b. Return a+b. Example 1 2 Input: 3 4 Output: 7 SOLUTION 1 2 a, b = int(input()), int(input()) print(a + b) HTB-challenge, coding, very-easy HTB CTF writeup Share