CJCoding With Joseph

Echo an Integer

Read one integer from standard input and print it back in this exact format (no trailing newline):

You entered: 42

Here 42 is only an example — print whatever integer was read. Use scanf with %d to read, then printf.

Expected Output:

You entered: 42
Topics:
Printing
📥 Auto-Input:
42
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.