13 lines
203 B
C
13 lines
203 B
C
#include "stdio.h"
|
|
#include "stdlib.h"
|
|
|
|
int main() {
|
|
int a, b;
|
|
char c;
|
|
c=getchar();
|
|
scanf("%d%d",&a,&b);
|
|
putchar(c);
|
|
printf("%d,%d\n",a,b);
|
|
system("pause");
|
|
return 0;
|
|
} |