Josif_tepe

Untitled

Nov 15th, 2025
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6.  
  7.     int a, b;
  8.  
  9.     int n = 0;
  10.  
  11.     cin >> a >> b;
  12.  
  13.     while (a > 0)
  14.  
  15.     {
  16.  
  17.         n = n + a*b;
  18.  
  19.         a--;
  20.  
  21.     }
  22.  
  23.     cout << n;
  24.  
  25.     return 0;
  26.  
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment