3312: 【入门】切割字符串(2)

Memory Limit:128 MB Time Limit:1.000 S
Submit数:1 Solved数:1

Description

从键盘读入一个英文字符串,该字符串中只有字母及英文的分号";",请将该字符串根据英文的分号切割出若干单词并输出。

Input描述

输入一个字符串(长度≤100)

Output描述

输出按分号位置切割后的单词,每行一个。

Sample Input Copy

hello;world;

Sample Output Copy

hello
world

Source/Category

Problem :   3312        Language:        




    # 输入数据自测: