import sys
input = sys.stdin.readline
word = input()
dial = {1: "", 2:"ABC", 3:"DEF", 4:"GHI", 5:"JKL", 6:"MNO", 7:"PQRS", 8:"TUV", 9:"WXYZ", 0:""}
time = 0
for i in word:
for key, value in dial.items():
if i in value:
time += key + 1
print (time)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 7287번 등록 (파이썬) (0) | 2022.06.16 |
---|---|
[백준] 6603번 로또 (파이썬) (0) | 2022.06.16 |
[백준] 5585번 거스름돈 (파이썬) (0) | 2022.06.16 |
[백준] 4673번 셀프 넘버 (C++) (0) | 2022.06.16 |
[백준] 4344번 평균은 넘겠지 (C++) (0) | 2022.06.14 |