blob: d1e315da20917b42d4783e95db3c711aecd4913d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class StartingAndEnding {
public static void main(String[] args) throws java.io.IOException {
int a, b;
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
BufferedReader input2 = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Starting");
a = Integer.parseInt(input.readLine());
System.out.println("Ending");
b = Integer.parseInt(input2.readLine());
System.out.println("\n");
for(a=a;a<=b; a++){ //for some ungodly reason a for loop needs a declarative statement at the start. I can't find a good fix for this and this is a resource wasting, malformed practice but it works.
System.out.println(a);
}
}
}
//By msglm; Licensed under the AGPL v3
|