Generation

generate functionTue, 23 May 2023

Código para saber cuál es el número mayor

int main(void) { int a, b; scanf("%d %d", &a, &b); if (a > b) printf("%d\n", a); else printf("%d\n", b); return 0; }

Want to kickstart your project?Use the new AI Studio to create your code