// Please write a method that will return a random ip address and write it on the screen.
// Hint:
// object Random from System namespace has the following methods
// Next -> returns a random integer
// NextDouble -> returns a random float from range 0-1
using System;
public class Program
{
public void Main()
Console.WriteLine("Hello World");
}