From 3b18c6a6d4f8777248bd73d71d0b3f42e5b70962 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 18 Feb 2021 19:29:38 +0100 Subject: [PATCH] Create 2 - What's Your Sign? --- 06/2 - What's Your Sign? | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 06/2 - What's Your Sign? 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")