import math
a = float(input())
b = float(input())
c = math.sqrt(a**2 + b**2)
print(c)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
import math
a = float(input())
b = float(input())
c = math.sqrt(a**2 + b**2)
print(c)