message = "91 322 57 124 40 406 272 147 239 285 353 272 77 110 296 262 299 323 255 337 150 102"
alphabet = string.ascii_lowercase + string.digits + "_"
FLAG = "picoCTF{"
for i in message.split():
    FLAG += alphabet[int(i) % 37]
FLAG += "}"
print(FLAG)
picoCTF{r0und_n_r0und_add17ec2}
import string
message = "104 290 356 313 262 337 354 229 146 297 118 373 221 359 338 321 288 79 214 277 131 190 377"
alphabet = string.ascii_lowercase + string.digits + "_"
FLAG = "picoCTF{"
for i in message.split():
    FLAG += alphabet[pow(int(i), -1, 41) - 1]
    #pow(A, power, B)
FLAG += "}"
print("Flag:", FLAG)
Flag: picoCTF{1nv3r53ly_h4rd_8a05d939}
public class Party
{
    private int boxesOfFood;
    private int numOfPeople;

    public Party(int people, int foodBoxes)
    {
        numOfPeople = people;
        boxesOfFood = foodBoxes;
    }

    public void orderMoreFood( int additionalFoodBoxes)
    {
        int updatedAmountOfFood;
        boxesOfFood = updatedAmountOfFood;
}
    public void eatFoodBoxes(int eatenBoxes) {
        boxesOfFood = updatedAmountOfFood - eatenBoxes;
    }
}
|           boxesOfFood = updatedAmountOfFood - eatenBoxes;
cannot find symbol
  symbol:   variable updatedAmountOfFood

|           boxesOfFood = updatedAmountOfFood;
variable updatedAmountOfFood might not have been initialized