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: diff --git a/ipl.py b/ipl.py new file mode 100644 index 0000000..5686955 --- /dev/null +++ b/ipl.py @@ -0,0 +1,5 @@ +a = 1 +if(a==1): + print("RCB did not won the ipl") +else: + print("RCB won the ipl")