Submission

Status:
P

Score: 100

User: Nathlol2

Problemset: คาราเมล

Language: cpp

Time: 0.002 second

Submitted On: 2024-11-26 17:06:31

#include "caramel.h"
#include <bits/stdc++.h>
using namespace std;

bool isInCaramel(char x) {
    // start writing
    string n = "CaRaMeL";
    if(x == 'C' || x == 'a' || x == 'R' || x == 'a' || x == 'M' || x == 'e' || x == 'L'){
    	return true;
	}
	return false; 
}