-
Notifications
You must be signed in to change notification settings - Fork 0
/
1152.java
83 lines (81 loc) · 1.86 KB
/
1152.java
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.StringTokenizer;
//import java.io.BufferedReader;
//import java.io.IOException;
//import java.io.InputStreamReader;
//import java.util.Stack;
//
//public class Main {
// public static void main(String[] args) throws IOException {
// BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// ST st = new ST();
// String s = br.readLine();
// int n = Integer.parseInt(s);
// int count = 0;
// for (int i=0; i<n; i++) {
// st.push();
// if(st.vs()) {
// count++;
// }
// }
// System.out.println(count);
// }
// }
//
//class ST {
// Stack<Character> stack;
// BufferedReader br;
//
// public ST() {
// stack = new Stack<Character>();
// br = new BufferedReader(new InputStreamReader(System.in));
// }
//
// public void push() throws IOException {
// String ss = br.readLine();
// for(int i=0; i<ss.length(); i++) {
// stack.push(ss.charAt(i));
// }
// }
// public boolean vs() {
// boolean boo = true;
// while(stack.isEmpty()!=true) {
// char a = stack.pop();
// if(stack.isEmpty()) {
// boo = false;
// break;
// }
// char b = stack.pop();
// if(a == b) {
// continue;
// } else if(a != b) {
// if(stack.isEmpty()) {
// boo = false;
// break;
// }
// a = stack.pop();
// if(a!=b) {
// boo = false;
// } else if(a==b) {
// continue;
// }
// }
// }
// return boo;
// }
//}
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
LinkedList<String> list = new LinkedList<String>();
while(st.hasMoreTokens()!=false) {
list.add(st.nextToken());
}
System.out.println(list.size());
}
}