백준풀이(Python)

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

육지핑핑이 2023. 3. 22. 01:44

Python3 코드

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