Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #Very easy
  2. 4815 + 1623 + 42
  3.  
  4. #Medium
  5. x = int(input ("Enter number here"))
  6. Enter number here15
  7. x + 1
  8. 16
  9.  
  10. #Hard
  11. y = int(input("Type your top number"))
  12. Type your top number67
  13. x = int(input("Type your bottom number"))
  14. Type your bottom number62
  15. x * 100
  16. 6200
  17. x * 100 / y
  18. 92.53731343283582
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement