Run ID:87092
提交时间:2024-08-03 20:53:53
def pinfanggen(n): a=n**0.5 return int(a) if a.is_integer() else a n=float(input()) print(pinfanggen(n))