using System;class UnaryOpsApp{ static void Main(string[] args) { int a; a = -42; Console.WriteLine("{0}", a); }}