fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a,b,c;
  6. cin>>a;
  7. cin>>b;
  8. c=a*b;
  9. cout<<"c= "<<c;
  10. return 0;
  11.  
  12. }
  13.  
  14.  
Success #stdin #stdout 0s 5304KB
stdin
25
96
stdout
c= 2400