Home [Python] 백준 10869번 : 사칙연산
Post
Cancel

[Python] 백준 10869번 : 사칙연산

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로 처리하였다.

This post is licensed under CC BY 4.0 by the author.

[Python] 백준 1008번 : A/B

[Python] 백준 2438번 : 별 찍기 - 1