Respuesta :
The program which assigns the smaller of the values in variable a and b using an if/else statement ls :
a = 100
b = 50
#assign the 100 and 50 to the variables a and b respectively
if a > b :
# the if statement checks if the variable a is greater the value on variable b
m = a
# if true assign the value of a to the variable m
else :
# if otherwise, then b would be greater
m = b
#assign the value of b to m
#the sample run of the program is attached
print(m)
Learn more :https://brainly.com/question/15727806