fork download
  1. #include <stdio.h>
  2.  
  3. int FindCommonDigit(long long int n1, long int n2) { printf("%lld\n", n1); }
  4.  
  5. int main(void) {
  6. printf("%d\n", FindCommonDigit(1113355579999, 123457));
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
1113355579999
0