본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#301 백준 파이썬 [15964] 이상한 기호

https://www.acmicpc.net/problem/15964

 

PYTHON CODE

A, B = map(int, input().split())
print((A+B)*(A-B))