Addition
Problem Description
Given two integers a,b, calculate their sum.
Input
- A single line containing two integers a,b \leq 10^9.
Output
- Output a single integer, the sum of a and b.
Sample
input #1:
1 1
output #1:
2
Time Limit: 1.0s | Memory Limit: 128 MB
Practice Mode
💡 Tip: Press Ctrl + Enter (or ⌘ + Enter on Mac) to submit your code instantly.