-
-
Save quantra-go-algo/dbcf2d8aa0e712c35d1eb439b532c08f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x= 8 | |
y= 4 | |
# Addition of two operands | |
add = x+ y | |
print(add) | |
# Subtraction of two operands | |
sub = x-y | |
print (sub) | |
# Multiplication of two operands | |
multiplication = x*y | |
print (multiplication) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment