[Baekjoon] #27331 (2 桁の整数 (Two-digit Integer) )

REi·2024년 6월 9일

Baekjoon 브론즈 V

목록 보기
17/72

> 문제


> 핵심내용

  • int()
  • input()

> 결과

> 결과코드

# 백준 #27331 (2 桁の整数 (Two-digit Integer) )

user_input_A = int(input())
user_input_B = int(input())

print((user_input_A*10) + user_input_B) 

0개의 댓글