9 lines
151 B
C
9 lines
151 B
C
#include <stdio.h>
|
|
int main()
|
|
{
|
|
int a=-1, b=-1;
|
|
int res = scanf("%d,%d", &a, &b);
|
|
printf ("res = %d a=%d b=%d\n", res , a, b);
|
|
return 0;
|
|
}
|