class Main {
public static void main(String[] args) {
System.out.println("이번주 행운의 번호는?");
try{
Thread.sleep(1000);
}catch(InterruptedException e){
e.printStackTrace();
}
System.out.print("삐리리립...");
try{
Thread.sleep(1000);
}catch(InterruptedException e){
e.printStackTrace();
}
for(int i=0 ; i<5 ; i++) {
System.out.print((int)(Math.random()*45+1)+" ");
}
System.out.print("입니다.");
}
}