using System;
public class Program
{
public static void Main()
double negativezero = -0.0; // fails
System.Console.WriteLine(1 / negativezero);
}