What is the value of x after the following statements execute? int x = 5; int y = 30; do{ x = x * 2; }while (x < y);