17 lines
231 B
C#
17 lines
231 B
C#
|
using System;
|
||
|
|
||
|
public class X
|
||
|
{
|
||
|
[CLSCompliant (false)]
|
||
|
public static string Text ()
|
||
|
{
|
||
|
return "PASS";
|
||
|
}
|
||
|
|
||
|
public static int Main ()
|
||
|
{
|
||
|
Console.WriteLine (Text ());
|
||
|
return 0;
|
||
|
}
|
||
|
}
|