fork download
  1. using System;
  2.  
  3. class Loss {
  4. public static void Main (string[] args) => new Loss().Start();
  5. public void Start() {
  6. if (this is Loss) {
  7. Console.WriteLine("I | II");
  8. Console.WriteLine("II | I_");
  9. }
  10. }
  11. }
Success #stdin #stdout 0.02s 14576KB
stdin
Standard input is empty
stdout
I  | II
II | I_