Posts

Showing posts with the label URI Simple product

URI 1004

Solution of URI 1004 >>Simple Product #include < stdio.h > int main ( ) { int A, B, PROD ; scanf ( "%d%d" , & A, & B ) ; PROD = A * B ; printf ( "PROD = %d \n " , PROD ) ;   return 0 ; }