Assignemnt #129 and Simple Web Input

Code

    
    ///name: Nick Cerdan
    ///period: 6
    ///Program name: Simple Web Input
    ///file name: SimpleWebInput.java
    ///date finished: 2/16/16
    
    import java.net.URL;
    import java.util.Scanner;
    
    public class SimpleWebInput {
    
        public static void main(String[] args) throws Exception {
    
            URL mURL = new URL("http://llhscp-npc.neocities.org");
            Scanner webIn = new Scanner(mURL.openStream());
    
            String one = webIn.nextLine();
            String two = webIn.nextLine();
    
            webIn.close();
    
            System.out.println(one);
            System.out.println(two);
        }
    }
    
    Assignment 129