HackTheBox Addition Writeup
Explore the basics of cybersecurity in the Addition Challenge on Hack The Box. This very-easy-level Challenge introduces encryption reversal and file handling concepts in a clear and accessible way, perfect for beginners.
Task
Addition
Take in two numbers, a
and b
. Return a+b
.
Example
Input
3 4
Output
7
Poc
1
2
3
4
a = int(input())
b = int(input())
answer = a + b
print(answer)
This post is licensed under CC BY 4.0 by the author.