Source Code
#include <stdio.h>
 
 
int main() {
	char x[4] = "xxxx";
	int count = 0;
	scanf("%s", x);
	while(x[0] >= x[2])	{
		x[2]+=x[2];
		count+=1;
	}
	return 0;
}
Copy
The Tortoise and the Hare 5hafiq
GNU GCC C11
2 ms
284 KB
Wrong Answer