fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int value1, value2; // two integers
  6.  
  7. // read in as a signed decimal and integer
  8. scanf ("%d %i", &value1, &value2);
  9. printf ("%d %i", value1, value2);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5316KB
stdin
098401
098401
stdout
98401 0