Skip to content

Commit

Permalink
feat(3.1.2): Finished U3_L1_Activity_Two
Browse files Browse the repository at this point in the history
  • Loading branch information
101zh committed Oct 6, 2023
1 parent 2e7e08b commit 17c3a0d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/java/Unit3/U3_L1_Activity_Two.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package Unit3;

import java.util.Scanner;

public class U3_L1_Activity_Two {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int x = scan.nextInt();
if (x == 48) {
System.out.println("YES");
}
scan.close();

}
}

0 comments on commit 17c3a0d

Please sign in to comment.