fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5. //std::cout << "Nico33\n";
  6. std::string first_name;
  7. int age;
  8. std::cin >> first_name;
  9. std::cin >> age;
  10. std::cout << "Hallo " << first_name << " (Alter" << age << ")\n";
  11. return 0;
  12. }
Success #stdin #stdout 0s 15232KB
stdin
Nico 33
stdout
Hallo Nico (Alter33)