C语言代码和运行结果如下:
输出符合要求,望采纳~
附源码:
#include
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d, %d\n", a, b);
return 0;
}