CS
cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
int num1 = 1;
int num2 = 1;
int answer = num1+num2;
Console.WriteLine(answer);
}
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run