using System;
using System.Collections.Generic;
namespace Problem
{
public class Program
/*
Return true if there is a place to split the array
so that the sum on left and right side are equal
*/
static bool CanSplitEqually(int[] list)
// Write your code here
return false;
}