blob: 0affee8320dfb074920d0a91b2c0fe9b007d8833 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//BufferedReader is faster than scanner as it doesn't parse the text. Iterated over 1000 times, it saves 30 seconds in total.
import java.io.BufferedReader;
import java.io.InputStreamReader;
class Average {
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));
a = Integer.parseInt(input.readLine());
b = Integer.parseInt(input2.readLine());
int s = a + b;
System.out.println("Average is: " + s/2);
}
}
|