a=float(input())
if a>=-5 and a<5:
print(True)
else:
print(False)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a=float(input())
if a>=-5 and a<5:
print(True)
else:
print(False)