#include<bits/stdc++.h>
using namespace std;
string str;
bool p,p1;
int main()
{
cin>>str;
p=p1=true;
if (find(str.begin(),str.end(),"\r")!=str.end()) p=true;
if (find(str.begin(),str.end(),"\n")!=str.end()) p1=true;
if (p&&p1) cout<<"Windows";
else if (p) cout<<"Mac";
else cout<<"Linux";
}
这样用有什么问题吗?qwq