profile image

L o a d i n g . . .

1
a, b = map(int, input().split())

plus=a+b
minus=a-b
mult=a*b
mod=a//b

print(plus,minus,mult,mod,sep="\n")
cs

 

복사했습니다!