Hello CodeBeta

5

2 votes
Easy
Problem

You will be given a string of words separated by space. You have to print each word in a new line.

For example :

If the string is "Hello CodeBeta" output should be :

Hello 

CodeBeta

HINT : ASCII CODE FOR SPACE IS 32.

Sample Input
Hello CodeBeta
Sample Output
Hello
CodeBeta
Time Limit: 1
Memory Limit: 256
Source Limit:
Contributers:
Editor Image

?