#include <stdio.h>
int main(void) {
int a,b,c,d,e,f,g,h,i,j;
scanf("%d%d%d%d%d%d%d%d%d%d", &a, &b, &c, &d, &e, &f, &g, &h, &i, &j);
printf("You entered %d%d.%d%d%d%d%.d%d%d%d", a, b, c, d, e, f, g, h, i, j);
return 0;
}
//想要的答案
//使用者輸入(數字為整數格式):
//==================================
//(04) 2218-3580
//==================================
//程式輸出:
//==================================
//You entered 04.2218.3580
//==================================
//程式執行的結果
//使用者輸入(數字為整數格式):
//(04) 2218-3580
//程式輸出:
//You entered 04203769.0101-1-101
#include <stdio.h>
int main(void) {
int a,b,c,d,e,f,g,h,i,j;
scanf("(%1d%1d) %1d%1d%1d%1d-%1d%1d%1d%1d", &a, &b, &c, &d, &e, &f, &g, &h, &i, &j);
printf("You entered %d%d.%d%d%d%d.%d%d%d%d", a, b, c, d, e, f, g, h, i, j);
return 0;
}