using System; public class Kata { public static int Opposite(int number) { return -number; } }
Loading collection data...