//賠償しる二ダ!!
import java.io.*;
class neta
{
public static void main(String args[]) throws IOException
{

System.out.println("賠償金が欲しい二ダ。他に欲しい人は何人二ダ?");

BufferedReader br =
new BufferedReader(new InputStreamReader(System.in));

String str = br.readLine();
int num =Integer.parseInt(str);

int test[];
test = new int[num];

System.out.println("それぞれの人は何億円の賠償を求めますか?");

for(int i=0 ;i<num; i++){
str =br.readLine();
int tem =Integer.parseInt(str);
test[i] = tem;
}

for(int i=0; i<num ; i++){
System.out.println((i+1) + "番目の人の賠償は" +test[i]+ "億円二ダ!!");
}
}
}