def smaller_num(x,y): if x<y: return x else: return y
x = int(input('Enter the value of x: ') y = int(input('Enter the value of y: ')
print(f"Between {x} and {y} the smallest number is {smaller_num(x,y)}")