fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. string a, b, c;
  7. a = "part1";
  8. b = "part2";
  9. c = a + " & " + b;
  10. cout << c << '\n';
  11. // your code goes here
  12. return 0;
  13. }
Success #stdin #stdout 0s 3476KB
stdin
Standard input is empty
stdout
part1 & part2