python-algorithm

[백준] 1271

무적김두칠 2020. 12. 14. 13:07

1
2
3
a,b=map(int, input().split())
print(a//b)
print(a%b)
cs

 

반응형