y

ykj30 苍狼 2024-04-13 17:49:03 12
#include<bits/stdc++.h>
using namespace std;
int main(){
	int a;
	cin>>a;
	for(int i=1;i<=a;i++){
		if(i%3==0) cout<<"x";
		else cout<<"o"; 
	}
	return 0;
}
{{ vote && vote.total.up }}