我必须比较两个数字并写大,然后小,但我不知道如何让一个更小。我目前有这个代码:
a = int(input())
b = int(input())
c = round(((a + b) + abs(a - b)) / 2)
x = "should be smaller one"
print("{0}\n{1}".format(c, x))
我必须比较两个数字并写大,然后小,但我不知道如何让一个更小。我目前有这个代码:
a = int(input())
b = int(input())
c = round(((a + b) + abs(a - b)) / 2)
x = "should be smaller one"
print("{0}\n{1}".format(c, x))