Skip to content

2 桁の整数

1. Problem

해당 문제는 여기에서 확인하실 수 있습니다.

2. Answer

A = int(input())
B = int(input())

print(A * 10 + B)