#include <stdio.h> int main() { int N; // Input scanf("%d", &N); // Toggle 5th bit (position 5) N = N ^ (1 << 5); // Output printf("%d", N); return 0; }