We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94fabfd commit 379ae7cCopy full SHA for 379ae7c
equality.py
@@ -0,0 +1,15 @@
1
+seemaGlassCount = int(input("Enter seema's glass count"))
2
+raniGlassCount = int(input("Enter rani's glass count"))
3
+
4
+seemaGlassRate = 5
5
+raniGlassRate = 7
6
7
+seemaTotalMoney = seemaGlassCount * seemaGlassRate
8
+raniTotalMoney = raniGlassCount * raniGlassRate
9
10
+if seemaTotalMoney > raniTotalMoney:
11
+ print("seema:", seemaTotalMoney,"cents")
12
+elif seemaTotalMoney < raniTotalMoney:
13
+ print("rani:", raniTotalMoney,"cents")
14
+elif seemaTotalMoney == raniTotalMoney:
15
+ print("kara's and rani's money is equal")
0 commit comments