fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct x {
  5. int a, b;
  6. x(int aa, int bb) {
  7. a = aa;
  8. b = bb;
  9. }
  10. };
  11.  
  12. int main() {
  13. // your code goes here
  14. x xx = {1, 1};
  15. xx = {2, 2};
  16. return 0;
  17. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty