Add Two Numbers

VERY EASY · C · 2000ms

Fahim has just joined the CS department and is writing his very first C programs for orientation week. His mentor starts him off with the basics: read two numbers scribbled on his notebook and report their total. Read two integers A and B on one line and print their sum.

Input

Two space-separated integers A, B.

Output

A single integer: A + B.

Constraints

-10^9 ≤ A, B ≤ 10^9

Sample Input

3 5

Sample Output

8
main.c
Loading editor…

Write C, then Run (custom I/O) or Submit (sample tests). ⌘/Ctrl+Enter submits.

Add Two Numbers · DIU ContestHub