Algorithm/Python
10430 파이썬 한 줄에 하나씩 출력하기
Saans
2022. 4. 2. 00:47
A,B,C = map(int, input().split())
print((A+B)%C , ((A%C) + (B%C))%C, (A*B)%C, ((A%C)* (B%C))%C, sep='\n')
sep = '\n'
한 줄에 하나씩 출력 가능