import java.util.*;

class ListSize
{
	public static void main (String[] args) throws java.lang.Exception
	{
		List<String> x = Arrays.asList("a", "b", "c");
		
		int n = x.size();
		
		System.out.println(n);
	}
}