Submission

Status:

-

Subtask/Task Score:

0/100

Score: 0

User: exoworldgd

Problemset: คาราเมล

Language: cpp

Time: 0.002 second

Submitted On: 2025-05-25 21:29:01

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