Create 2 - What's Your Sign?

This commit is contained in:
Lukas Baumann 2021-02-18 19:29:38 +01:00 committed by GitHub
parent 2f31fa3a39
commit 3b18c6a6d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
06/2 - What's Your Sign? Normal file
View File

@ -0,0 +1,7 @@
x=int(input())
if x > 0:
print("Positive")
if x < 0:
print("Negative")
if x == 0:
print("Zero")