268.

Nullable <int> intvalue = null;
Console.WriteLine(intvalue ?? 60);

The ?? operator returns the left-hand operand if it is not null, or else it returns the right operand.