/* To determine whether the matrix is a triangular matrix.
First, you will be given N, which is the size of the matrix.
Then you will be given N rows of integers, where each row consists of
N integers separated by spaces.
If the input matrix is triangular, then print yes. Otherwise, print
no. */
#include