Posts

Showing posts with the label prints the name of the polygon

prints the name of the polygon

prints the name of the polygon       a=int(input())      if(a<3):          print("Not Polygon")      elif(a==3):          print("Triangle")      elif(a==4):          print("Quadrilateral")      elif(a==5):          print("Pentagon")      elif(a>5):          print("Big Polygon")