You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("Area of Triangle : ",((int(input("Enter breadth of triangle : ")))*(int(input("Enter height of triangle : "))))/2,"\n Area of Rectangle : ",(int(input("Enter length of rectangle : ")))*(int(input("Enter width of triangle : "))))
'''
b=int(input("Enter breadth of triangle : "))
h=int(input("Enter length of triangle : "))
l,w=map(int,input("Enter length and breadth of rectangle : ").split())