num = float(input("Unesite broj: ")) if num > 0: print("pozitivan broj") elif num == 0: print("nula") else: print("negativan broj")