diff --git a/8. if else.py b/8. if else.py index e88aa0d..84bdf23 100644 --- a/8. if else.py +++ b/8. if else.py @@ -19,9 +19,11 @@ y = 8 if x < y: + print('y is greater than x') +else: print('x is greater than y') if x > 55: print('x is greater than 55') else: - print('x is not greater than y or 55') + print('x is not greater than 55')