본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#407 백준 파이썬 [11382] 꼬마 정민

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

 

PYTHON CODE

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