Created
August 23, 2025 02:42
-
-
Save amlanpatnaik001/496df8160f08f13b3550464ee9b8f69e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
N1 = int(input("Enter the first number: ")) | |
N2 = int(input("Enter the second number: ")) | |
addition = N1+N2 | |
subtraction = N1-N2 | |
multiplication = N1*N2 | |
division = N1/N2 | |
print("Addition: ", addition) | |
print("Subtraction: ", subtraction) | |
print("Multiplication: ", multiplication) | |
print("Division: ", division) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment