Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.io.*;
- import java.util.*;
- public class Main {
- public static void main(String[] args) throws IOException {
- Scanner in = new Scanner(System.in);
- int n = in.nextInt();
- int d = in.nextInt();
- int maxDays = 0;
- int days = 0;
- while (in.hasNextLine()) {
- String line = in.next();
- System.out.println("recieved " + line + "\n");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment