Skip to content

Instantly share code, notes, and snippets.

@amlanpatnaik001
Created August 23, 2025 02:42
Show Gist options
  • Save amlanpatnaik001/496df8160f08f13b3550464ee9b8f69e to your computer and use it in GitHub Desktop.
Save amlanpatnaik001/496df8160f08f13b3550464ee9b8f69e to your computer and use it in GitHub Desktop.
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