Skip to content

Instantly share code, notes, and snippets.

@cristinelpopescu
Created February 28, 2021 15:46
Show Gist options
  • Save cristinelpopescu/d8ba9ea9e09b639480eb3395bdb35053 to your computer and use it in GitHub Desktop.
Save cristinelpopescu/d8ba9ea9e09b639480eb3395bdb35053 to your computer and use it in GitHub Desktop.
#some simple math
A = float(input('enter A number: '))
B = float(input('enter B number: '))
#addition
#print( A + B)
#substraction
#print( A - B)
#divide
#print( A / B)
#multiply
#print( A * B)
#A power B
#print( A ** B)
#division without rest
#print(A // B)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment