fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int x;
  6. int y;
  7. int sum;
  8.  
  9. x=8;
  10. y=7;
  11.  
  12. sum=x*y;
  13. printf("두 수의 곱 = %d \n" , sum);
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 4264KB
stdin
Standard input is empty
stdout
두 수의 곱 = 56