Joined
Last Seen
0 Reputation Points
30% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
0 Endorsements
Ranked #107.70K
1 Posted Topic
Re: C++ Program
#include<iostream> using namespace std; int main() { int n1,n2,holder=0; cin>>n1>>n2; for (int i=0;i<n2;i++) { holder=holder+n1; } cout<<holder<<endl; }
The End.
hamzayammu