public static void Main(String[] args) { Rat r1 = new Rat(3, 4); Rat r2 = new Rat(5, 6); Console.WriteLine(r1 + r2); Console.ReadLine(); }