test.cs 311 B

123456789101112131415
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. class MonoEmbed {
  4. [MethodImplAttribute(MethodImplOptions.InternalCall)]
  5. extern static string gimme();
  6. static int Main ()
  7. {
  8. System.Console.WriteLine(gimme ());
  9. if (gimme ().Equals("All your monos are belong to us!"))
  10. return 0;
  11. return 100;
  12. }
  13. }