mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
19 lines
No EOL
210 B
C#
19 lines
No EOL
210 B
C#
using System;
|
|
|
|
class Test
|
|
{
|
|
static int Main()
|
|
{
|
|
long xLong = GetValue();
|
|
if(xLong == 1) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
public static long GetValue()
|
|
{
|
|
return 1;
|
|
}
|
|
} |