From 26b6b0f6af152261a6c9b0f5510ca4c66faa00c1 Mon Sep 17 00:00:00 2001 From: Ayushman Dixit <46623283+ayushman2001@users.noreply.github.com> Date: Thu, 1 Oct 2020 17:52:49 +0530 Subject: [PATCH 1/3] Create ipl.py RCB fate in ipl finder. --- ipl.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ipl.py diff --git a/ipl.py b/ipl.py new file mode 100644 index 0000000..40a8c1c --- /dev/null +++ b/ipl.py @@ -0,0 +1,5 @@ +a = 1 +if(a==1): + print("RCB did not won ipl") +else: + print("RCB won the ipl") From c42769fca53d79109b8ba5cc6c061fd1f00d3cec Mon Sep 17 00:00:00 2001 From: Ayushman Dixit <46623283+ayushman2001@users.noreply.github.com> Date: Thu, 1 Oct 2020 17:53:16 +0530 Subject: [PATCH 2/3] Update ipl.py --- ipl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipl.py b/ipl.py index 40a8c1c..5686955 100644 --- a/ipl.py +++ b/ipl.py @@ -1,5 +1,5 @@ a = 1 if(a==1): - print("RCB did not won ipl") + print("RCB did not won the ipl") else: print("RCB won the ipl") From 71bc4f7619c2912cc5b8fc9d80c1064875e4b2a8 Mon Sep 17 00:00:00 2001 From: iamtechgeek <56069413+iamtechgeek@users.noreply.github.com> Date: Fri, 2 Oct 2020 17:45:20 +0530 Subject: [PATCH 3/3] Update compare.py --- compare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compare.py b/compare.py index 2095025..e38c419 100644 --- a/compare.py +++ b/compare.py @@ -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: