using System;
public class Program
{
public static void Main()
// declare and set in two steps
int age;
age = 2;
// do this in just one step
}