{}
CYBER CYBER CYBER CYBER CYBER
66
%OFF
Week Week Week Week Week

Stop copy pasting code you don't actually understand

Build the coding confidence you need to become a developer companies will fight for

Stop copy pasting code you don't actually understand

Become a PRO
Become a PRO
CYBER CYBER CYBER CYBER CYBER
66
%OFF
Week Week Week Week Week

Stop copy pasting code you don't actually understand

Build the coding confidence you need to become a developer companies will fight for

Stop copy pasting code you don't actually understand

Become a PRO
Become a PRO
run-icon
main.cpp
#include <iostream> using namespace std; int multiply(int a, int b){ int val = 0; while(b != 0){ val += a; b -= 1; } return val; } int main() { //feel free to plug in your own values cout << multiply(1253, -527)<< endl; //-660331 return 0; }
Output