try this buddy...

public static void main(String[] args)
{
int d1 = Craps.d1();
int d2 = Craps.d2();
System.out.println("You rolled " + d1 + " + " + d2 + " = " + getDice(d1,d2));
...