Submission

Status:

P

Subtask/Task Score:

100/100

Score: 100

User: exoworldgd

Problemset: คาราเมล

Language: cpp

Time: 0.002 second

Submitted On: 2025-05-31 12:02:59

#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;
}