CodeUp 1043-정수 2개(a, b) 를 입력받아 a를 b로 나눈 나머지를 출력해보자.

resilient

·

2020. 6. 15. 17:35

728x90
반응형

a,b=input().split()
print(int(a)%int(b))

반응형