16
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
byte a = 100;
8
byte b = 200;
9
byte c = (byte) (a + b);
10
Console.WriteLine($"{a} + {b} = {c} ");
11
12
int d = 2147483647;
13
int e = d+1;
14
Console.WriteLine($"{d} + 1 = {e}");
15
}
16
}
Cached Result