/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
public static int Sum(int[]A,int L,int R)
{
return 0;
//??
}
public static int Where(int[] A)
{
for (int P = 1; P < A.Length; P++)
{
}
return 0;
//??
}
static void Main() {
Console.WriteLine("Hello World");
int[] A3 = { 5, 6, 1, 2, 8 };
int P = Where(A3);
Console.WriteLine(P);
}
}