28 lines
No EOL
499 B
Markdown
28 lines
No EOL
499 B
Markdown
![img](../../../../../assets/htb.png)
|
|
|
|
|
|
<img src='../../../../../assets/logo.png' style='zoom: 80%;' align=left /> <font size='10'>Addition</font>
|
|
|
|
1<sup>st</sup> October 2024
|
|
|
|
Prepared By: ir0nstone
|
|
|
|
Challenge Author(s): ir0nstone
|
|
|
|
Difficulty: <font color='green'>Very Easy</font>
|
|
|
|
# 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.
|
|
|
|
```py
|
|
a = int(input())
|
|
b = int(input())
|
|
|
|
print(a+b)
|
|
``` |