⌨️

[AtCoder]ABC-212|A - Alloy

2023/04/25に公開

設問ページ

提出結果

def getIntMap():
    return map(int, input().split())


def main():
    a, b = getIntMap()

    print('Alloy' if a > 0 and b > 0 else 'Gold' if b == 0 else 'Silver')


if __name__ == "__main__":
    main()

Discussion