#include <stdio.h> int isKthBitSet(int n, int k) { // Take only the kth bit value and then shift it return ((n & (1 << k)) >> k); } int main() { int n, k; scanf("%d %d", &n, &k); printf("%d", isKthBitSet(n, k)); return 0; }
Test Cases
Test Results
Input
8 3
Expected Output
1