#include using namespace std; typedef long long int ll; /*__________Functions_________*/ bool is_single(string s) { if(s[0]=='/'&& s[1]=='/') return true; return false; } bool is_multy(string s) { if(s[0]=='/'&& s[1]=='*' && s[s.size()-1]=='/' && s[s.size()-2]=='*') return true; return false; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); while (1){ string s; getline(cin,s); if(is_single(s)) cout<< "Single Line Comment"<