Code

#include<stdio.h>
int main(){
    int n;
    scanf("%d",&n);
    n= n^(1<<5);
    printf("%d",n);
    return 0;
    }

Solving Approach

 

 

 

Upvote
Downvote
Loading...

Input

8

Expected Output

40