Submission

Status:
P

Score: 100

User: .n0t_gloomy.

Problemset: คาราเมล

Language: cpp

Time: 0.002 second

Submitted On: 2025-03-13 19:30:45

#include <bits/stdc++.h>
using namespace std;
bool isInCaramel(char C)
{
    if (C == 'C' || C == 'a' || C == 'R' || C == 'M' || C == 'e' || C == 'L' )
    {
        return true;
    }
    return false;
}