Note: Attempt the below assignments after completing Logical Operators tutorial.

1) Write a program to check 'a' is greater than 'b' or less than 'b'
Hint: use if statement.
2) Write another program to check which value is greater 'a', 'b' or 'c'.
Hint: use else-if statement.
(Take values of a, b, c as user inputs)