fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5. auto numberX{2020};
  6. std::wstring f_str = std::to_wstring((long long)numberX);
  7. std::wcout << f_str;
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 5524KB
stdin
Standard input is empty
stdout
2020