Так как язык не указан, приведу пример на SWI-Prolog.
Код:
read_int(Int) :- read(Int), integer(Int).split_int_by_numbers(0, []) :- !.split_int_by_numbers(N, [Number|Ints]) :- Number is mod(N, 10), RestN is div(N, 10), split_int_by_numbers(RestN, Ints).test_to_div(_, []).test_to_div(N, [Number|Ints]) :- mod(N, Number) =:= 0, test_to_div(N, Ints). test(Int) :- split_int_by_numbers(Int, Numbers), test_to_div(Int, Numbers), write(Int), write(" - Yes!"), nl.test(Int) :- write(Int), write(" - No!"), nl.?- read_int(Int), test(Int).
x, y = int(input()), int(input())
if x < y:
x = 0
elif x > y:
y = 0
else:
x = 0
y = 0
print(x, y)
Если x и y вводятся через пробел то замени первую строчку на
x, y = map(int, input().split())
Если выводить надо как то по особому, то там сам подправишь инпут.
Если надо могу решить еще на C++, паскале, джава.