1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4. int main(int argc, char *argv[])
  5. {
  6. int n;
  7. string txt;
  8. txt ="Scary Movie Teil ";
  9.  
  10. for (n=1; n<5;n++)
  11. {
  12. cout << txt << n<<endl;
  13. }
  14. cin >> n;
  15. system("PAUSE");
  16. return EXIT_SUCCESS;
  17. }