[Python] ABC018 A 2019/12/28 2019/12/28 プログラミング 問題 A – 豆まき 回答 A = int(input()) B = int(input()) C = int(input()) l = [A, B, C] l_sorted = sorted(l)[::-1] for num in l: print(l_sorted.index(num) + 1)