CJCoding With Joseph

Read Two Integers on Separate Lines

Read two integers a and b from standard input (in that order) and print them back with a on the first line and b on the second line. For example, if the input is 5 9, print:

5
9

Do not print a trailing newline after the second number.

Expected Output:

5
9
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
5 9\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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.