------
## 最终结论
```python
import math

def Check_Solution(a, b, c):
    # Calculate the discriminant
    discriminant = b**2 - 4*a*c
    
    # If the discriminant is negative, there are no real roots
    if discriminant < 0:
        return "No"
    
    # Calculate the two roots using the quadratic formula
    r1 = (-b + math.sqrt(discriminant)) / (2 * a)
    r2 = (-b - math.sqrt(discriminant)) / (2 * a)
    
    # Check if one root is twice the other
    if r1 == 2 * r2 or r2 == 2 * r1:
        return "Yes"
    
    return "No"
```