using System;
namespace ConsoleApp6
{
class Program
static void Main(string[] args)
int x, y, z, k=0;
x = int.Parse(Console.ReadLine());
y = int.Parse(Console.ReadLine());
z = int.Parse(Console.ReadLine());
if (x == 0)
k++;
if (y == 0)
if (z == 0)
if (k==0)
Console.WriteLine("среди чисел нулей нет");
else
Console.WriteLine("кол-во чисел равных 0: " + k.ToString());
Console.ReadKey();
}
using System;
namespace ConsoleApp6
{
class Program
{
static void Main(string[] args)
{
int x, y, z, k=0;
x = int.Parse(Console.ReadLine());
y = int.Parse(Console.ReadLine());
z = int.Parse(Console.ReadLine());
if (x == 0)
k++;
if (y == 0)
k++;
if (z == 0)
k++;
if (k==0)
Console.WriteLine("среди чисел нулей нет");
else
Console.WriteLine("кол-во чисел равных 0: " + k.ToString());
Console.ReadKey();
}
}
}