fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. std::wstring ws(LR"del( !\"#$%&'()*+,-./0123456789:;<=>?)del" L"\n"
  7. LR"del(@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_)del" L"\n"
  8. LR"del(`abcdefghijklmnopqrstuvwxyz{|}~)del" L"\n");
  9. std::wcout << ws;
  10. return 0;
  11. }
Success #stdin #stdout 0s 3488KB
stdin
Standard input is empty
stdout
 !\"#$%&'()*+,-./0123456789:;<=>?
@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_
`abcdefghijklmnopqrstuvwxyz{|}~