Skip to content

Commit

Permalink
Merge pull request #10 from Arijit2003/patch-1
Browse files Browse the repository at this point in the history
ARIJIT-21BCE11159 Add this code
  • Loading branch information
amansharma2910 authored Oct 2, 2021
2 parents d746074 + 8bc5044 commit 3aeedee
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ARIJIT MODAK-21BCE11159.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
print("Hello Everyone")
# Simple Calculator
A=int(input("Enter Your 1st No."))
B=int(input("Enter Your 2nd No."))
Sum=A+B # Addition
print("Summation=",Sum)
Sub=A-B # Substraction
print("Substraction=",Sub)
Mul=A*B # Multiplication
print("Multiplication=",Mul)
Div=A/B # Division
print("Division=",Div)

0 comments on commit 3aeedee

Please sign in to comment.