//To view IL click on the arrow next to Tidy Up and select "View IL"
//Screenshot: http://screencast.com/t/9AHI0dRV
//
//Read all about Intermidiate Language here
//http://www.dotnetperls.com/il
using System;
public class Program
{
public static void Main()
int j = 28;
int j2 = (byte)((byte)j * 128);
const int p = 28;
int p2 = (byte)((byte)p * 128);
}