Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math;
- b = float(input())
- if (b > 0):
- print("all")
- else:
- if (b == 0):
- print("x<0 x>0")
- else:
- q = math.sqrt(-b);
- print("x<-"+str(q)+" x>"+str(q))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement