import java.util.Random;

public class IfDiceExample {

	public static void main(String[] args) {
		Random random = new Random();   //밑에 방식 말고 이걸로 쓰라
		int ranNum1 = random.nextInt(10) + 11; // 11부터 20까지 하겠다.내가 받을 숫자의 총 갯수
		int ranNum2 = random.nextInt(10) + 11;
		int ranNum3 = random.nextInt(10) + 11;
		int ranNum4 = random.nextInt(10) + 11;
		
		int renNum21 = (int)(Math.random() * 6) +1 ;
		int renNum22 = (int)(Math.random() * 6) +1 ;
		int renNum23 = (int)(Math.random() * 6) +1 ;
		int renNum24 = (int)(Math.random() * 6) +1 ;
	}

}