Problem
https://www.acmicpc.net/problem/10869
Solution
code
1
2
a, b = map(int,input().split())
print(a+b, a-b, a*b, a//b, a%b,sep='\n')
Memo
line2에서는 각각의 계산을 따로 출력하는 대신 sep=’\n’을 활용하여 한번의 print로 처리하였다.
https://www.acmicpc.net/problem/10869
1
2
a, b = map(int,input().split())
print(a+b, a-b, a*b, a//b, a%b,sep='\n')
line2에서는 각각의 계산을 따로 출력하는 대신 sep=’\n’을 활용하여 한번의 print로 처리하였다.
A new version of content is available.