The best option is to first try to find the most suitable variable type in order to save memory - the lowest ones - the program will load faster!
Here is my solution:
using System;
class PracticeIntegerNumbers
{
static void Main()
{
sbyte a = -100;
byte b = 128;
short c = -3540;
ushort d = 64876;
uint e = 2147483648;
int f = -1141583228;
long g = -1223372036854775808;
Console.WriteLine("{0}\n{1}\n{2}\n{3}\n{4}\n{5}\n{6}\n", a, b, c, d, e, f, g);
}
}