I am trying to define a function to make the perimeter of a rectangle. Here is the code:
width = input() height = input() def rectanglePerimeter(width, heigh
convert your inputs to ints:
width = int(input()) height = int(input())