Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/leer.c Secret

Created March 8, 2021 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/bb5904a6f5b04a664020e3193d0824a1 to your computer and use it in GitHub Desktop.
Save parzibyte/bb5904a6f5b04a664020e3193d0824a1 to your computer and use it in GitHub Desktop.
// https://parzibyte.me/blog
#include <stdio.h>
int main(int argc, char const *argv[])
{
int primerNumero, segundoNumero;
printf("Ingresa dos números separados por una coma:\n");
scanf("%d,%d", &primerNumero, &segundoNumero);
printf("El primer número es %d y el segundo %d", primerNumero, segundoNumero);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment