We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c29e1 commit f37a2cbCopy full SHA for f37a2cb
2 files changed
.gitignore
@@ -157,4 +157,4 @@ cython_debug/
157
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
-#.idea/
+.idea/
Programs/AddTwoNumbers.py
@@ -0,0 +1,10 @@
1
+
2
+# ============= Solution 01 =============
3
+# num1 = 10
4
+# num2 = 20
5
+# print("Sum of given two numbers :", num1 + num2)
6
7
+# ============= Solution 02 =============
8
+num1 = float(input("Enter first number :"))
9
+num2 = float(input("Enter second number :"))
10
+print("Sum of given two numbers :", num1 + num2)
0 commit comments