Guest User

Untitled

a guest
Jun 29th, 2016
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.io.*;
  4. import java.util.*;
  5.  
  6. public class Main {
  7.  
  8.     public static void main(String[] args) throws IOException {
  9.         Scanner in = new Scanner(System.in);
  10.  
  11.         int n = in.nextInt();
  12.         int d = in.nextInt();
  13.         int maxDays = 0;
  14.         int days = 0;
  15.  
  16.         while (in.hasNextLine()) {
  17.             String line = in.next();
  18.             System.out.println("recieved " + line + "\n");
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment