1). Write a program to scan 3 integer numbers from user, then find the maximum of these 3 numbers and print it.
2). Write a program to scan 2 integer numbers from user, then check for below conditions:
a). If both the numbers are equal, print a message "Both numbers are equal".
b). If first number is greater than second number, print a message "First number is greater than second number".
c). If second number is greater than first number, print a message "Second number is greater than first number".