document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.util.*;
  2.  
  3. public class Practicer {
  4.  
  5. public static void main(String[] args) {
  6. Scanner cin = new Scanner(System.in);
  7.  
  8. while(cin.hasNext()){
  9. int times = cin.nextInt();
  10.  
  11. for(int i=0;i<times;i++){
  12. System.out.println("I don't say swear words!");
  13. }
  14.  
  15. }
  16.  
  17. }
  18.  
  19. }
  20.  
  21.  
');