728x90
반응형
단순 구현(노가다) 문제이다.
a, b, c = map(int, input().split())
if a+b == c:
print(f"{a}+{b}={c}")
elif a-b == c:
print(f"{a}-{b}={c}")
elif a*b == c:
print(f"{a}*{b}={c}")
elif a//b == c:
print(f"{a}/{b}={c}")
elif a == b+c:
print(f"{a}={b}+{c}")
elif a == b-c:
print(f"{a}={b}-{c}")
elif a == b*c:
print(f"{a}={b}*{c}")
elif a == b//c:
print(f"{a}={b}/{c}")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 3028번 창영마을(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 2991번 사나운 개(python) (0) | 2021.02.12 |
백준 알고리즘 2975번 Transactions(python) (0) | 2021.02.12 |
백준 알고리즘 2959번 거북이(python) (0) | 2021.02.12 |
백준 알고리즘 2953번 나는 요리사다(python) (0) | 2021.02.12 |