import java.io.*;
import java.util.regex.*;
public class Test
{
public static void main(String [] args)throws Exception
{
BufferedReader br=new BufferedReader(new FileReader("c:\\input.txt"));
String s;
while(true)
{
s=br.readLine();
if(s==null)break;
String[]t=s.split("\\|");
System.out.println("Number:"+t[0]);
if(t.length>1)
System.out.println("Name:"+t[1]);
else System.out.println("Name:");
if(t.length>2)
System.out.println("Description:"+t[2]);
else
System.out.println("Description:");
}
}
}