Assignment #115 and Number Puzzles I

Code

    ///Name: Ali Kurland
    /// Period: 6
    /// Program Name: Number Puzzles I
    /// File Name: PuzzleI.java
    /// Date Finished: 2/ /2016
    
    public class PuzzleI
    {
    	public static void main( String[] args )
    	{
            for ( int x=10; x<100; x++ )
                for ( int y=10; y<100; y++ )
                {
                    if ( x + y == 60 )
                        if ( x - y == 14 || y - x == 14 )
                            System.out.println( x + "," + y );
                }
                
        }
    }
    

Picture of the output

Assignment 115