import time a=int(input("Input a: ")) b=int(input("Input b: ")) if a!=0: print("Unique solution: ",-b/a) elif a==0 and b!=0: print("No solution") else: print("Any real number") time.sleep(2)