Algorithm/필수 문법
파이썬3 필수 문법
공놀이나하여보세
2019. 7. 19. 07:28
1. 두개 숫자 입력 받기
1 2
a, b = map(int, input().split())
print(a+b)
2. 한개 숫자 입력 받기
a = int(input())