Built-in: Sum of 2 random int

Write a program SumOfTwoRand_YI.java that prints the sum of two random integers between 1 and 6 (such as you might get when rolling dice).
As a good recommendation, first write the program to understand how the Math.random() method works.


NOTE: double r = Math.random();

Warning: Do not use Math.round(). Instead use the casing operator (int)