본문 바로가기

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

#308 백준 파이썬 [15700] 타일 채우기 4

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

 

PYTHON CODE

N, M = map(int, input().split())
print(N * M // 2)