#include <stdio.h> int toggleFifthBit(int n) { // Write your code here n = n ^ (1 << 5); // Toggle the 5th bit using XOR return n; } int main() { int n; scanf("%d", &n); printf("%d", toggleFifthBit(n)); return 0; }