artur99

Untitled

May 28th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5.     int a = 0, b = 0, prod = 0;
  6.    
  7.     cin>>a>>b;
  8.    
  9.     if(a > 0){
  10.         do{
  11.             a--;
  12.             prod += b;
  13.         }while(a > 0);
  14.     }
  15.    
  16.     cout<<prod<<endl;
  17.        
  18. }
Add Comment
Please, Sign In to add comment