請撰寫一個程式,輸入兩個整數 a 和 b,比較兩者的大小並輸出結果。
兩個整數 a 和 b
如果 a>b,輸出"a is greater";如果 a<b,輸出 "b is greater";如果 a=b,輸出"a and b are equal"。
7 3
a is greater
if-else