CJCoding With Joseph

Read Two Numbers and Print Their Sum

Read two lines of input, each containing an integer, then print their sum. For the input lines 3 and 4, print:

7

Use int.Parse on each line read with Console.ReadLine.

Expected Output:

7
Topics:
Printing
๐Ÿ“ฅ Auto-Input:
3\n4\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.