/in/foo.c: In function 'main':
/in/foo.c:5:13: warning: format '%d' expects a matching 'int *' argument [-Wformat=]
scanf("%d %d,&x,&y");
^
/in/foo.c:5:16: warning: format '%d' expects a matching 'int *' argument [-Wformat=]
scanf("%d %d,&x,&y");
^
/in/foo.c:6:14: error: 'x' undeclared (first use in this function)
printf("%d",x+y);
^
/in/foo.c:6:14: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:6:16: error: 'y' undeclared (first use in this function)
printf("%d",x+y);
^