#include <sys/types.h>
#include <unistd.h>

int main ( void )
{
    printf("%d\n", getuid() );
    return 0;
}
