백준

[백준] 11382번 : 꼬마 정민 (Python) - 단계별로 풀어보기

by 윤 2023. 3. 22. 01:47
728x90

Python3 코드

A,B,C = map(int, input().split())
print(A+B+C)