Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compare.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Compare two numbers a and b, and print which is greater or equal.
a = 100
b = 33
a = int(input())
b = int(input())
if b > a:
print("b is greater than a")
elif a == b:
Expand Down
5 changes: 5 additions & 0 deletions ipl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
a = 1
if(a==1):
print("RCB did not won the ipl")
else:
print("RCB won the ipl")