#include <iostream>
#include <ctime>
#include <stdlib.h>

int main()
{
    srand (time(NULL));

    int nums[4] = {0 , 2, 3 ,5};
    int posicaoSorteada = rand() % 4;
    std::cout<<"Elemento sorteado "<<nums[posicaoSorteada];

    return 0;
}
