import java.net.*;

public class Myaddress {
    public static void main(String args[]) {
	try {
	    InetAddress me = InetAddress.getLocalHost();
	    System.out.println(me);
	} catch (UnknownHostException e) {
	    System.out.println("I don't know who I am!");
	}
    }
}

