Assignemnt #57 Dice

Code

    //Tyler Hart
    //period 5
    //Dice.java
    //Dice
    //11/10/2015
    
    import java.util.Random;
    
    public class Dice
    {
        public static void main( String [] args)
        {
            Random r = new Random();
            int d1= r.nextInt(6)+1,d2= r.nextInt(6)+1;
            System.out.println("Here comes the SUN");
            System.out.println("Roll #1: "+d1);
            System.out.println("Roll #2: "+d2);
            System.out.println("The total is "+(d1+d2+"!"));
        }
    }
    

Picture of the output