All submissions

Code

#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;
}

Solving Approach

 

 

 

Loading...

Input

8

Expected Output

40