Sum of Two Numbers
Easy📝 Description
Write a program that takes two numbers as input and returns their sum.
Input Format
Two space-separated integers a and b
Output Format
A single integer representing the sum of a and b
Constraints
-1000 ≤ a, b ≤ 1000
🔍 Sample Input
5 7
✅ Sample Output
12
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run