int main()
{
    int a,b,c,d;
    a=20;
    b=40;
    c=10;
    d=50;
    printf("l %d\nq %d\nz %d\ns %d",d,b,a,c);

    return 0;
}
