-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay4
More file actions
26 lines (22 loc) · 607 Bytes
/
Copy pathDay4
File metadata and controls
26 lines (22 loc) · 607 Bytes
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
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
scan.close();
String ans="";
// if 'n' is NOT evenly divisible by 2 (i.e.: n is odd)
if((n%2==1) || (n%2==0 && n>=6 && n<=20)) {
ans = "Weird";
}
else if((n%2==0&& n>2 && n<5) || (n%2==0 && n>20))
{
ans= "Not Weird";
}
System.out.println(ans);
}
}