using System;
public class Program
{
public static void Main()
int z = 5;
int x = 0;
int y = 0;
x = y = z;
Console.WriteLine($"{x},{y},{z}");
}