processors=2
if (pid==1)
{
	call me
	print i
}

if (pid==2)
{
	call you
	print  b
}

procedure me
{
	i=3
}

procedure you
{
	b=5
}