/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int estoque = 50; //valor recuperado do sistema
 
		if (estoque >= 100) {
		    System.out.println("Produto com quantidade suficiente.");
		} else if (estoque < 100 && estoque > 50) {
		    System.out.println("Alerta: Avaliar possibilidade de novo pedido.");
		} else {
		    System.out.println("ATENÇÃO! Faça um novo pedido.");
		}
	}
}