Basics - ProgramsFind area of TriangleOn this pageFind area of TriangleProblem StatementFind area of TriangleCodePython CodeN = list(map(int, input().split(' ')[:2]))print(0.5*N[0]*N[1])