fork download
  1. // Программа Привет, мир!
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. cout << "Привет, мир!" << endl;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Привет, мир!