ctf-resources/htb/hacktheboo2024/coding/[Very Easy] addition
2024-10-23 11:10:43 +02:00
..
challenge added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
solutions added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
build_docker.sh added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
Dockerfile added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
README.md added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00

img

Addition

1st October 2024

Prepared By: ir0nstone

Challenge Author(s): ir0nstone

Difficulty: Very Easy

Synopsis

Given two numbers, return the sum.

Skills Required

  • Basic Python

Solution

Take in the inputs, parse them to integers and then print the sum.

a = int(input())
b = int(input())

print(a+b)