separate email


Submit solution

Points: 50 (partial)
Time limit: 1.0s
Memory limit: 64M

Authors:
Problem type

題目說明

輸入一個email,格式為username@provider.extension,請分開輸出username、provider、extension

輸入資料限制:1 <= 輸入字串長度 <= 50,只會有一個@與.

輸入

郵箱地址

輸出

username provider extension

sample input1

jane18@gmail.com

sample output1

jane18
gmail
com

sample input2

bob21@government.uk

sample output2

bob21
government
uk

Comments

There are no comments at the moment.