Guest User

Untitled

a guest
Oct 23rd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int x;
  4.  
  5. int main()
  6. {
  7. for (x= 1; x < 26; x++)
  8. {
  9. std::cout << x << ". Tere! " << std::endl;
  10. }
  11.  
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment