diff --git a/anmol/addition.py b/anmol/addition.py new file mode 100644 index 0000000..a71fec6 --- /dev/null +++ b/anmol/addition.py @@ -0,0 +1,6 @@ +a = int(input("enter first number: ")) +b = int(input("enter second number: ")) + +sum = a + b + +print("sum:", sum) \ No newline at end of file