#Integer num_napkins is read from input representing the number of napkins. Output:

#'Medium package', if there are 60 - 90 napkins inclusive.
#'Large package', if there are 130 - 180 napkins inclusive.

num_napkins = int(input())

if 60 <= num_napkins <= 90: 
    print('Mediunm package')

if 130 <= num_napkins <= 180: 
    print('Large package')


#Integer cups_count is read from input representing the number of cups. Output:

#'Basic container', if the number of cups is greater than or equal to 45 and less than 70.
#'Standard container', if the number of cups is greater than or equal to 125 and less than 140.
#'Not efficient to ship', otherwise.

cups_count = int(input())

if 45 <= cups_count < 70: 
    print('Basic container')

elif 125 <= cups_count < 140: 
    print('Standard container') 

else: 
    print('Not efficient to ship') 

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: