fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x[10]={0};
  5.  
  6. scanf("%d",x); scanf("%d",x+9);
  7.  
  8. for(int i=0;i<10;i++){
  9. printf("%d",x[i]);
  10. }
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5276KB
stdin
5 9
stdout
5000000009