Company: Standard chartered_8thaug
Difficulty: easy
A refrigerated warehouse operates a row of storage units, one unit per incoming order. Every order arrives with the exact holding temperature its goods require, and the shift supervisor is preparing the sub-zero handling roster. Only the orders whose required holding temperature is strictly below 0 degrees need the freezer protocol; anything at 0 degrees or warmer is handled by the ordinary chilled units. Given the required holding temperature of every order, report how many orders need the freezer protocol. Input The first line of the input consists of an integer numOfProducts , representing the number of orders ( N ). The second line consists of N space-separated integers temperature[0] , temperature[1] , ..., temperature[N-1] , representing the temperature at which each order must be held in its storage unit. When N is 0 the second line is empty or absent. Output Print a single integer: the number of orders whose required holding temperature is strictly below zero. Constraints 0 <