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



class test {

	public static void main(String[] args) throws IOException {
		URL u = new URL(args[0]);
		InputStream s = u.openStream();
		int c;
		while ((c = s.read()) > 0) {
			System.out.write((byte)c);
		}	
		
	}
}
