#include #include int main(void) { int t,i; scanf("%d",&t); char str[25],str1[10],str2[10],str3[10]; int num; for(i=0; i<4; i++){ scanf("%s",&str); sscanf(str, "%s %s %d %s", str1, str2, num, str3); printf("%s %s %d %s\n", str1, str2, num+1, str3); } return 0; }