Assignemnt #71 Shorter Double Dice

Code
/// Name: Yordan Rashkov
/// Period: 7
/// Program Name: Shorter Double Dice
/// File Name: ShorterDoubleDice.java
/// Date Finished: 1/13/2016

import java.util.Random;

import java.util.Scanner;

public class ShorterDoubleDice

{
	
    public static void main ( String[] args )
	{    
        Random r = new Random();
        Scanner keyboard = new Scanner(System.in);
        
        do 
        
        {
        
		int y = 1 + r.nextInt(6), x = 1 + r.nextInt(6), t;
    
		String response = "";
        
        System.out.println("Here comes the dice!");
        System.out.println();
        System.out.println("Roll #1: " + x);
        System.out.println("Roll #2: " + y);
        t = x + y;
        System.out.println("The total is " + t +"!");
        
        }
    }
}