This is my GitHub C:\Users\ajjoh\PycharmProjects\pythonProject\venv\Scripts\python.exe C:\Users\ajjoh\PycharmProjects\pythonProject\main.py
b=int(input()) c=int(input())
if b < c: print("b is less than c") else: if b > c: print("be is greater than c") else: print("b and c are equal") done