Skip to content

Commit 1e0063c

Browse files
Merge pull request seeditsolution#241 from hackerboyalex/patch-1
Create The multi-line form of this code would be
2 parents 6f8c6fb + 66a739e commit 1e0063c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python3
2+
3+
b = int(input("Enter value for b: "))
4+
5+
if b >= 0:
6+
a = "positive"
7+
else:
8+
a = "negative"
9+
10+
print(a)

0 commit comments

Comments
 (0)