Skip to content

Commit

Permalink
CT_373
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade-Good committed Jan 28, 2025
1 parent 63ba3f1 commit a7bd677
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions BOJ/Java/src/B5/Boj_33161_Pencils2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package B5;

import java.io.*;

public class Boj_33161_Pencils2 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));

bw.write(Integer.toString(Integer.parseInt(br.readLine()) / 5));
bw.flush();
}
}

0 comments on commit a7bd677

Please sign in to comment.