import java.util.*;

class ArrayLength
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String[] x = new String[]{"a", "b", "c"};
		
		int n = x.length;
		
		System.out.println(n);
	}
}