CF702A Maximum Increase
Description
You are given array consisting of $ n $ integers. Your task is to find the maximum length of an increasing subarray of the given array.
A subarray is the sequence of consecutive elements of the array. Subarray is called increasing if each element of this subarray strictly greater than previous.
Input Format
The first line contains single positive integer $ n $ ( $ 1
Output Format
Print the maximum length of an increasing subarray of the given array.