⌨️

[AtCoder]ABC-218|B - qwerty

2023/05/03に公開

設問ページ

提出結果

def getIntList():
    return list(map(int, input().split()))


def main():
    p = getIntList()

    a = ord('a') - 1
    s = []
    for i in p:
        s.append(chr(a + i))
    print(''.join(s))


if __name__ == "__main__":
    main()

Discussion