Skip to content

Commit

Permalink
B_10824
Browse files Browse the repository at this point in the history
  • Loading branch information
likppi10 committed Oct 27, 2021
1 parent 3121409 commit 0ce45a4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Algorithm_Baek/Basic/B_203/B_10824_네수.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package B_203_자료구조1참고;

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

public class B_10824_네수 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String nums = br.readLine();
StringTokenizer st = new StringTokenizer(nums, " ");

System.out.println(Long.parseLong(st.nextToken()+st.nextToken()) + Long.parseLong(st.nextToken()+st.nextToken()));
}
}

0 comments on commit 0ce45a4

Please sign in to comment.