CJCoding With Joseph
15per day

Single CSV Line

Read three lines of input: name, age, and country. Then print a CSV header and the CSV line.

Output format:
Name,Age,Country
name,age,country

Print the header once, then the data line.

Expected Output:

Name,Age,Country
Mia,19,Canada
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
Mia\n19\nCanada\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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.