[백준/파이썬] 10824번

민정·2023년 2월 10일
0

[백준/파이썬]

목록 보기
93/245
post-thumbnail

백준 10824번

문제

https://www.acmicpc.net/problem/10824

코드

a,b,c,d = map(int, input().split())

temp1 = str(a)+str(b)
temp2 = str(c)+str(d)

temp1 = int(temp1)
temp2 = int(temp2)
print(temp1+temp2)

풀이

a,b 더하고 c,d를 더할때는 문자열의 특성을 이용해 문자를 붙여주며, 이후 정수로 변환하여 더해줍니다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글