using System;
public class Program
{
public static void Main()
int be;
Console.WriteLine("Ha esetleg nem tudsz számolni, prímfelosztás kell, és nem ismered fel a számokat, adj meg egy számot!");
be = Convert.ToInt32(Console.ReadLine());
do
be = be/2;
Console.Write("2X");
} while (be % 2 == 0);
Console.WriteLine(be);
}