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