import java.util.*;
class Book{
int id,num;
String name,press,author;
float price;
Book(int ID,String NAME,float PRICE ,int NUM,String PRESS,String AUthor){
this.id=ID;
this.num=NUM;
this.name=NAME;
this.press=PRESS;
this.author=AUthor;
this.price=PRICE;
}
}
public class nm42 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
Scanner sc=new Scanner(System.in);
int A=sc.nextInt(); //id
String C=sc.next(); //name
float F=sc.nextFloat(); //price
int B=sc.nextInt(); //num
String D=sc.next(); //press
String E=sc.next(); //author
sc.close();
Book book1= new Book(A,C,F,B,D,E);
System.out.println("name:"+book1.name+'\n'+"num:"+book1.num+'\n'
+"author:"+book1.author+'\n'+"press:"+book1.press+'\n'
+"price:"+book1.price+'\n');
}
}