#include <stdio.h>
unsigned char modifyBit(unsigned char reg, int pos, int mode) {
//Initialise a variable for storing the result
unsigned char result = 0;
//Check for mode '1'
if(mode) result = reg | (1 << pos);
//Check for mode '0'
else result = reg & ~(1 << pos);
//Return the result
return result;
}
int main() {
unsigned char reg;
int pos, mode;
scanf("%hhu %d %d", ®, &pos, &mode);
printf("%d", modifyBit(reg, pos, mode));
return 0;
}