class ConstParty {
public static void main(String args[]) {
String type = "archer cp";
String age = "average age 33";
String time = "prime time 20-24 msc ";
String gameOffer = "we can offer to sit on our ";
String profession = "BladeDancer";
String contacts = " MarcusAntonius, Kaminari";
System.out.println(String.format("%s \n %s \n %s \n %s \n ", type, age, time, gameOffer ));
System.out.println(String.format("%s ", profession));
System.out.print(String.format("%s ", contacts));
}
}