import java.net.InetAddress;public class Main { public static void main(String[] argv) throws Exception { InetAddress addr = InetAddress.getByName("www.google.com"); System.out.println(addr.getHostAddress()); }}