using System;
public class Program
{
public static void Main()
int n ;
bool m=true;
Console.WriteLine("הכנס מספר שלם וחיובי");
n=int.Parse(Console.ReadLine());
while(n>0)
{if(n%10 <=5)
{m=false;}
n =n/10;
}
Console.WriteLine( m +" - האם כל הספרות שבמספר גדולות מ 5");