#45041: 這題很簡單(不用想太多)


wesjim1000826@washington.org.t ... (彭品竣Jim)


a, b, c = list(map(int, input().split()))#輸入三個邊長
s = (a + b + c) / 2#半周長
area = pow(s * (s - a) * (s - b) * (s - c), 0.5)#海龍公式求面積, 不懂的看https://lazyorangelife.com/herons-formula/
ans = pow(area, 2)#面積平方
print(round(ans))#四捨五入+輸出