Guest User

Untitled

a guest
Feb 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. a = 1
  2. b = 2
  3. c = 3
  4. d = 4
  5. my_sum = a+b*c
  6. another_sum = 7+9
  7. print(my_sum)
  8. print(another_sum)
  9.  
  10. math_operators = 1+2*3/2-2
  11. print(math_operators)
Add Comment
Please, Sign In to add comment