def a[1000]
for j=0 to 1001
{
	a[j]=j
}
finalnumber=0

for i=0 to 1001
{
	if finalnumber < a[i]
	{
		finalnumber=a[i]
	}
}

println finalnumber