fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {int a=3,b;
  5. b=(a=3*5,a*4);
  6. cout<<a<<endl;
  7. cout<<b<<endl;
  8. // your code goes here
  9. return 0;
  10. }
Success #stdin #stdout 0s 5428KB
stdin
Standard input is empty
stdout
15
60