This commit is contained in:
2022-05-25 13:56:23 +02:00
parent 385019ba7e
commit f816615245

4
abc.py Normal file
View File

@@ -0,0 +1,4 @@
i = {}
i["A"], i["B"], i["C"] = sorted(list(map(int, input().split())))
order = input()
print(i[order[0]], i[order[1]], i[order[2]])