from math import*
def aire(a,b):
	c=a*b/2
	return c

print(aire(3,4))
