#include <stdio.h>
#include <stdint.h>
uint32_t extract_field(uint32_t reg, uint8_t pos, uint8_t len) {
// Your code here
uint32_t mask = (1 << len) - 1; // This performs the [2**(bitwidth)] - 1 operation
reg >>= pos; // shift the register to the right by 'pos' number of bits
return reg & mask;
}
int main() {
uint32_t reg;
uint8_t pos, len;
scanf("%u %hhu %hhu", ®, &pos, &len);
printf("%u", extract_field(reg, pos, len));
return 0;
}