x = float(input())
if x > 0:
print("Положительное число")
else:
print("меньше или равно 0")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
x = float(input())
if x > 0:
print("Положительное число")
else:
print("меньше или равно 0")