fork download
  1. #include <stdio.h>
  2. main ()
  3. { int x, y, z;
  4. printf( "enter two numbers :\n" );
  5. scanf( "%d %d",&x, &y);
  6. z=x*y;
  7. printf( "% d", z);;
  8. }
Success #stdin #stdout 0s 9432KB
stdin
2 4
stdout
enter two numbers :
 8