from math import*

def r(a,b):
	c=(a*b)/2
	return c

print (r(3,4))
