x = float(input())
if -2.4<=x and x<=5.7:
print(x*x)
else:
print(4)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
x = float(input())
if -2.4<=x and x<=5.7:
print(x*x)
else:
print(4)