programming-examples/c-sharp/Basic/C# Sharp program to print the sum of two numbers.cs
2019-11-18 14:44:36 +01:00

7 lines
115 B
C#

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