mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
No EOL
202 B
C#
15 lines
No EOL
202 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
static int Main()
|
|
{
|
|
int TheValue = Subtract(3, 2);
|
|
return TheValue == 1 ? 0 : 1;
|
|
}
|
|
|
|
public static int Subtract(int a, int b)
|
|
{
|
|
return a - b;
|
|
}
|
|
} |