diff --git a/The multi-line form of this code would be b/The multi-line form of this code would be new file mode 100644 index 0000000..13234d0 --- /dev/null +++ b/The multi-line form of this code would be @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +b = int(input("Enter value for b: ")) + +if b >= 0: + a = "positive" +else: + a = "negative" + +print(a)