1. 따로 입력 받기

n = input()
k = input()

2. 한 줄에 입력받기

n , k = input(), input()

3. split() 사용하여 입력받기

n, k = map(int, input().split())