#include <stdio.h> int flip (int no ){ no=no^(1<<5); return no; } int main(){ int flip (int no ); int no; scanf("%d",&no); printf("%d",flip(no)); return 0; }
Test Cases
Test Results
Input
8
Expected Output
40