URI 1004

Solution of URI 1004 >>Simple Product

  1. #include < stdio.h >
  2. int main()
  3. {
  4. int A, B, PROD;
  5. scanf ("%d%d", &A, &B);
  6. PROD = A * B;
  7. printf("PROD = %d\n", PROD);
  8.  
  9. return 0;
  10. }

Comments

Popular posts from this blog

URI 2994 Solution

URI 2996 Solution