#include <stdio.h> int main(int argc, char *argv[]) { short x, y; scanf("%hd%hd", &x, &y); printf("%d,%d\n", x, y); return 0; }