Last time It's the 11th day.
#11 Problem
** Thoughts ** X is up to $ 10 ^ {27} $, so I calculated it using mod well.
a, b, c = map(int,input().split())
mod = 10**9+7
print(a*b%mod*c%mod)
I was tired because I played mahjong for about 2 hours today. I want to solve tomorrow's AGC with A alone!
Recommended Posts