using System;
public class Program
{
public static void Main()
int b = 4;
int c = 0;
int d = 0;
int? a = b + c + d;
Console.WriteLine(a);
}