package primer5;

import java.net.*;

public class MyAddress {

	public static void main(String[] args) {

		try {
			InetAddress me = InetAddress.getLocalHost();
			String dottedQuad = me.getHostAddress();
			System.out.println("My address is " + dottedQuad);
		} catch (UnknownHostException ex) {
			System.out.println("This should not happen.");
		}

	}

}
