using System;
public class Program
{
public static void Main()
float red, green, blue, gray;
gray = red * 0.21 + green * 0.72 + blue * 0.07;
}