Skip to content

Commit

Permalink
B_2743
Browse files Browse the repository at this point in the history
  • Loading branch information
likppi10 committed Oct 30, 2021
1 parent 2291137 commit d2b6205
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Algorithm_Baek/Basic/B_203/B_2743_단어길이재기.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package B_203_자료구조1참고;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class B_2743_단어길이재기 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println(br.readLine().length());
}
}

0 comments on commit d2b6205

Please sign in to comment.