///Name: Ian Grant
///Period:5
///Project Name: Getting Individual Digits
///File Name:IndivDigits.java
///05/13/16
public class IndivDigits
{
public static void main(String [] args) throws Exception
{
for (int x = 0; x < 10; x++)
{
for (int y = 0; y < 10; y ++)
{
System.out.println( x + "" + y + ", "+ x +" + "+y+" = " + (x + y));
Thread.sleep(10);
}
}
}
}