diff --git a/06/2 - What's Your Sign? b/06/2 - What's Your Sign? new file mode 100644 index 0000000..82bae49 --- /dev/null +++ b/06/2 - What's Your Sign? @@ -0,0 +1,7 @@ +x=int(input()) +if x > 0: + print("Positive") +if x < 0: + print("Negative") +if x == 0: + print("Zero")