Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check whether two numbers are equal, greater, or lesser.
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("a == b : %d\n", a == b); printf("a > b : %d\n", a > b); printf("a < b : %d\n", a < b); return 0; }
5 10
a == b : 0 a > b : 0 a < b : 1