Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # > < >= <= == != not
  2. # or and
  3. #a = int(input("Enter Number:\n"))
  4. #if a > 0:
  5. #print("Positive")
  6. #print("========")
  7. #elif a == 0:
  8. #print("Zero")
  9. #else:
  10. #print("Negative")
  11.  
  12.  
  13. Width = input('Enter Width: ')
  14. Height = input('Enter Height: ')
  15.  
  16. if str.isdecimal(Width) and str.isdecimal(Height):
  17. Width = int(Width)
  18. Height = int(Height)
  19. else:
  20. print("Incorrect input")
  21. exit()
  22.  
  23. Total = Width * Height
  24. print('Area = ', Total)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement