//
import java.io.*;
import java.net.*;

public class AfficheUnURL {
  static public void main(String[] args)
   {if (args.length!=1) 
     {System.out.println("Usage : java AfficheUnURL ");
      System.exit(0);}
    try 
       {URL url= new URL(args[0]);
        Afficheur f= new Afficheur(url.openConnection());}
    catch (IOException e)
      {System.out.println(e);}
    }
}