programming-examples/c-sharp/_Basic/C# Sharp program to print the sum of two numbers.cs
2019-11-15 12:59:38 +01:00

7 lines
115 B
C#

public class Exercise2
{
public static void Main()
{
System.Console.WriteLine(15+17);
}
}