Advertisement
Avdluna

URI 1004

May 17th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5.    int a,b,x;
  6.    
  7.    scanf("%d %d", &a, &b);
  8.    
  9.    x = a*b;
  10.    
  11.    printf("PROD = %d\n", x);
  12.    
  13.    
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement