Sorry! Posting Assignment is allowed only for commercial accounts.
n= -1if n = 0: if n == 0: print("zero") else: print("Positive number")else: print("Negative number")
#include stdio.hvoid solve() { int a = 3; int res = a++ + ++a + a++ + ++a; printf("%d", res);}int main() { solve(); return 0;}
s = {1, 2, 3, 3, 2, 4, 5, 5}print(s)