using System;
public class Program
{
public static void Main()
int x;
Console.WriteLine("enter int numberin x");
x = int.Parse(Console.ReadLine());
int t = x / 6;
int y = x % 3;
Console.WriteLine("albake={0} , saheh={2}" , t, y);
}