Daily Python Coding Challenge

Sharpen your programming skills by solving a new Python coding problem everyday!

Ends In: --:--:--
Solution Available In: --:--:--
Jul
23
2026
Easy 50 Points

Sum of Two Numbers in Python

Write a Python program that reads two integers from input and prints their sum.

Input Format

Two integers on separate lines or space-separated.

Output Format

A single integer representing the sum.

Constraints

1 <= a, b <= 1000

Examples

Example 1:
Input:
5
10
Output:
15
Explanation: 5 + 10 = 15
Python
Theme:
Console Output
Press 'Run Code' to execute your program against the sample test cases.

Upcoming Challenges

24 Jul 2026
Check Even or Odd in Python
Easy +50 XP

Past Challenges

No past challenges available for this language.

Enter Submission Details
Hints Available
  1. Use int(input()) to read integers
  2. Use print(a + b)
Challenge Completed!
🎉
🚀
🔥
🌟
🎊
🏆
✨ Daily Coding Challenge ✨
🎉 SUCCESSFULLY SOLVED 🎉
User Name
from Location
Sum of Two Numbers in Python
Success Card
Generating your shareable success card...
Official Solution
Go Back Top