Exemple #1
0
 public static void Main(string[] args)
 {
     using (MyIo io = new MyIo())
     {
         new Program(io).Solve();
     }
 }
 public static void Main(string[] args)
 {
     using (MyIo io = new MyIo(new StreamReader("input.txt"), new StreamWriter("output.txt")))
     {
         new Program(io).Solve();
     }
 }
Exemple #3
0
 public Program(MyIo io)
 {
     this.io = io;
 }