코드당
Problem

#15. [W2, stdio, Lv1] Kindly input and output two integer

#15. [W2, stdio, Lv1] Kindly input and output two integer

Get real number input from user and print it as is.

You must guide user to input integer, with message "Input two integer: "

Then, print with message "First input was , and second value was "


Check run screen examples below.

User typed "12"

Input two integer: 1 2

First input was 1, and second value was 2

Text with the gray background is printed from the code, while text without background is input from user.


User typed "12"

Input two integer: 1

2

First input was 1, and second value was 2

Its result will be same, but showing a bit different while execution. 

Your program must deal with two kind of input properly: "" and "

(Hint: Actually you might not need to consider how user separated)


Use 'Test' and 'Run' function in goorm.



Be careful:

  • See Run Screen Example and Input/Output Example carefully
  • Any typos will make you no credits
  • Typo include spaces(' '), line breaks('\n'), tabs('\t'), and even null characters('\0').

Input

Output

Time Limit:

2000 ms

Memory Limit:

512 MB

Source: