HackTheBox Addition Challenge
https://app.hackthebox.com/challenges/814
Description
Two ancient runes hold hidden powers. Combine them to unlock the sum and reveal their secret.
Task
Addition
Take in two numbers, a and b. Return a+b .
Example
Input
3 4
Output
7
Exploitation
a = int(input())
b = int(input())
answer = a + b
print(answer)
Summary
Addition: reduce the custom rules to a scriptable check and use the smallest reliable path to the flag.