β Great or Awesome
Great or Awesome easy Time Limit: 2 sec Memory Limit: 128000 kB
```java
import java.io.*; // for handling input/output
import java.util.*; // contains Collections framework
// don't change the name of this class
// you can add inner classes if needed
class Main {
public static void main (String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
if(n>5){
System.out.println("awesome");
} else if(n>3){
System.out.println("great");
}else{
System.out.println("bad");
}
}
}
```Last updated