void setup() {
  Serial.begin(9600);
  int number = 16;
  int powerOfTwo = 4; // 2^4 = 16
  int result = number >> powerOfTwo;
  // After shifting the bits of the number to the right 4 positions,
  // the result will be 1 (16 divided by 2^4)
  Serial.print("Result: ");
  Serial.println(result);
}
void loop() {
  // The loop function is not used in this example
}