문제
#15873: 공백 없는 A+B(acmicpc.net)
설명
간단한 A+B 문제이지만 이 문제에는 입력할 때 숫자를 구분하는 공백이 없습니다.
숫자의 범위는 0에서 10까지만 주어지므로 AB(1)이 0이면 A는 10입니다.
그렇지 않으면 A가 1자리이므로 AB(0) + AB(1:)이 실행됩니다.
from sys import input
input = lambda : stdin.readline().strip()
AB = input()
if AB(1) == "0" :
print(10 + int(AB(2:)))
else :
print(int(AB(0)) + int(AB(1:)))