반응형
12345 A,B,C=map(int,input().split())print((A+B)%C)print( (A%C + B%C)%C)print((A*B)%C)print( (A%C * B%C)%C)cs
'Python' 카테고리의 다른 글
(Python) - 입출력 시간초과 해결법 (0) | 2021.01.22 |
---|---|
(Python 오류) - TypeError : list indices must be integers or slices, not float (2) | 2019.03.27 |
Day _03_04_파일 읽는 법:with open과 as (2) | 2016.10.02 |
print(i , end = ' ')가 안될 때 (0) | 2016.10.01 |
SyntaxError: Non-ASCII character...py on line 1, but no encoding declared (0) | 2016.10.01 |