#include <stdio.h> int isKthBitSet(int n, int k) { // Write your code here int set = ((1 <<k) | n ) == n; return set; } 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