using System;
public class Program
{
public static void Main()
//I.
Console.WriteLine("01001010: 64+8+2 = 74");
Console.WriteLine("11011011: 128+64+16+8+2+1 = 219");
//II.
/* This is a comment: everything inside should work */
//III.
// This is also a comment: everything to the right should work
//3.
Console.WriteLine("Julius Caesar: \"Veni, vidi, vici. (I came, I saw, I conquered).\"");
}