12253: 《C语言程序设计》江宝钏主编-习题3-8-解二次方程

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description


编写程序求方程ax2+bx+c=0的根,a、b、c的值由键盘输入,假设b2-4ac>0

Input

a b c

Output


两个根,大数在前,小数在后

Sample Input Copy

1 -3 2

Sample Output Copy

2 1