x=int(input("请输入正整数x:"))
y=int(input("请输入正整数y:"))
while x <> y:
if x > y:
x = x - y
else:
y = y - x
若输入8、24,则x、y的值分别为( )