Advertisement
Guest User

input intro

a guest
Oct 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. print("Let's calculate the area of a right angled rectangle (equiangular quadrilateral)")
  2. input1 = float(input("Side 1 > "))
  3. input2 = float(input("Side 2 > "))
  4.  
  5. result = input1 + input2
  6.  
  7. """result = int(input1) * int(input2)"""
  8.  
  9. print("The area of the right angled rectangle is " + str(result))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement