Problem Statement
A description of the problem can be found on Hackerrank.
Solution
I created solution in:
All solutions are also available on my GitHub.
Bash
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash read x read y if ((x < y)); then echo "X is less than Y" elif ((x > y)); then echo "X is greater than Y" else echo "X is equal to Y" fi |