output
stringlengths
52
181k
instruction
stringlengths
296
182k
#include <iostream> int main(){ char s[100]; std::cin>>s>>s; std::cout<<"A"<<s[0]<<"C";}
### Prompt Develop a solution in cpp to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> int main(){ char s[100]; std::cin>>s>>s; std::cout<<"A"<<s[0]<<"C";} ```
#include <iostream> int main(){char c[100];while(~scanf("%s", c)){putchar(*c);}}
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> int main(){char c[100];while(~scanf("%s", c)){putchar(*c);}} ```
#include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<'A'<<s1[0]<<'C'<<endl; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<'A'<<s1[0]<<'C'<<endl; } ```
#include <cstdio> char b; int main() { scanf("%*s%s", &b); printf("A%cC", b); return 0; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <cstdio> char b; int main() { scanf("%*s%s", &b); printf("A%cC", b); return 0; } ```
#include <bits/stdc++.h> using namespace std; int main() { string S; getline(cin,S); cout<<"A"<<S.at(8)<<"C"<< endl; }
### Prompt Please formulate a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string S; getline(cin,S); cout<<"A"<<S.at(8)<<"C"<< endl; } ```
#include <bits/stdc++.h> using namespace std; int main() { string x,y; cin >>x>>y; cout<< 'A'<<y.at(0)<<'C'<<endl; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string x,y; cin >>x>>y; cout<< 'A'<<y.at(0)<<'C'<<endl; } ```
#include<bits/stdc++.h> using namespace std; int main() { string s,a,b;cin>>s>>a>>b; cout<<'A'<<a[0]<<'C'<<endl; }
### Prompt Construct a CPP code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main() { string s,a,b;cin>>s>>a>>b; cout<<'A'<<a[0]<<'C'<<endl; } ```
#include <iostream> using namespace std; int main(void){ string A, B; cin>>A>>B; cout<<"A"<<B[0]<<"C"<<endl; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(void){ string A, B; cin>>A>>B; cout<<"A"<<B[0]<<"C"<<endl; } ```
#include<iostream> using namespace std; int main() { string A,B,C; cin>>A>>B>>C; cout<<"A"<<B[0]<<"C"<<endl; return 0; }
### Prompt Develop a solution in CPP to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main() { string A,B,C; cin>>A>>B>>C; cout<<"A"<<B[0]<<"C"<<endl; return 0; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string a,c,d; cin>>c>>a>>d; cout<<"A"<<a[0]<<"C"; cout<<"\n"; }
### Prompt In Cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string a,c,d; cin>>c>>a>>d; cout<<"A"<<a[0]<<"C"; cout<<"\n"; } ```
#include <iostream> using namespace std; int main() { string a,b,c; cin>>a>>b>>c; cout<<'A'<<b[0]<<'C'; }
### Prompt Please provide a cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main() { string a,b,c; cin>>a>>b>>c; cout<<'A'<<b[0]<<'C'; } ```
#include <bits/stdc++.h> using namespace std; int main() { string s; cin>>s>>s; cout<<'A'<<s[0]<<'C'; }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string s; cin>>s>>s; cout<<'A'<<s[0]<<'C'; } ```
#include <iostream> using namespace std; int main() { string s; cin>>s>>s; printf("A%cC",s[0]); }
### Prompt Your task is to create a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main() { string s; cin>>s>>s; printf("A%cC",s[0]); } ```
#include <bits/stdc++.h> using namespace std; int main(){ string A, s; cin >> A >> s; cout << "A" << s[0] << "C" << endl; }
### Prompt Generate a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string A, s; cin >> A >> s; cout << "A" << s[0] << "C" << endl; } ```
#include<iostream> using namespace std; int main() { string A, B, C; cin >> A >> B >> C; cout << A[0] << B[0] << C[0] << endl; }
### Prompt Create a solution in Cpp for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main() { string A, B, C; cin >> A >> B >> C; cout << A[0] << B[0] << C[0] << endl; } ```
#include <cstdio> int main () { char s[101]; scanf("%s%s",s,s); printf("A%cC\n",s[0]); return 0; }
### Prompt Please formulate a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <cstdio> int main () { char s[101]; scanf("%s%s",s,s); printf("A%cC\n",s[0]); return 0; } ```
#include <iostream> using namespace std; int main(){string s;getline(cin,s);cout<<"A"<<s[8]<<"C"<<endl;}
### Prompt Create a solution in CPP for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(){string s;getline(cin,s);cout<<"A"<<s[8]<<"C"<<endl;} ```
#include <stdio.h> int main(void) { char a[8],b[101],c[8]; scanf("%s\n%s\n%s",a,b,c); printf("A%cC\n",b[0]); return 0; }
### Prompt Generate a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <stdio.h> int main(void) { char a[8],b[101],c[8]; scanf("%s\n%s\n%s",a,b,c); printf("A%cC\n",b[0]); return 0; } ```
#include<cstdio> //char s[105]; int main(){ char s; scanf("AtCoder %c Contest",&s); printf("A%cC",s); return 0; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<cstdio> //char s[105]; int main(){ char s; scanf("AtCoder %c Contest",&s); printf("A%cC",s); return 0; } ```
#include<iostream> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]<<endl; return 0; }
### Prompt Please create a solution in Cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]<<endl; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main() { string A,B,C; cin>>A>>B>>C; cout<<A[0]<<B[0]<<C[0]; }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string A,B,C; cin>>A>>B>>C; cout<<A[0]<<B[0]<<C[0]; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b>>c; cout<<"A"<<b[0]<<"C"<<endl; }
### Prompt Your task is to create a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b>>c; cout<<"A"<<b[0]<<"C"<<endl; } ```
#include <iostream> using namespace std; int main(void){ char b; string a; cin>>a>>b; cout<<"A"<<b<<"C"<<endl; }
### Prompt Construct a Cpp code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(void){ char b; string a; cin>>a>>b; cout<<"A"<<b<<"C"<<endl; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string S; cin>>S>>S; cout<<'A'<<S[0]<<'C'; }
### Prompt Your challenge is to write a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string S; cin>>S>>S; cout<<'A'<<S[0]<<'C'; } ```
#include<iostream> #include<cstring> using namespace std; int main() { string a,b,c; cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; }
### Prompt Your challenge is to write a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> #include<cstring> using namespace std; int main() { string a,b,c; cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; } ```
#include<bits/stdc++.h> using namespace std; int main() {char a[100],b[100],c[100]; cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; }
### Prompt Your task is to create a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main() {char a[100],b[100],c[100]; cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; } ```
#include <bits/stdc++.h> using namespace std; int main() { string A,x,C; cin >> A>>x>>C; cout<< "A"<<x.at(0)<<"C" ; }
### Prompt Construct a cpp code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string A,x,C; cin >> A>>x>>C; cout<< "A"<<x.at(0)<<"C" ; } ```
#include <bits/stdc++.h> using namespace std; int main() { string r, s, t; cin >> r >> s >> t; cout << "A"<< s.at(0) << "C"; }
### Prompt Generate a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string r, s, t; cin >> r >> s >> t; cout << "A"<< s.at(0) << "C"; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b>>c; cout<<'A'<<b[0]<<"C\n"; return 0; }
### Prompt Please create a solution in cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b>>c; cout<<'A'<<b[0]<<"C\n"; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s >> s; cout << "A" << s[0] << "C" << endl; }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s >> s; cout << "A" << s[0] << "C" << endl; } ```
#include <iostream> using namespace std; int main(){ int n = 3; string s; while(n--){ cin >> s; cout << s[0]; } }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(){ int n = 3; string s; while(n--){ cin >> s; cout << s[0]; } } ```
#include<bits/stdc++.h> std::string a,b,c; int main() { std::cin>>a>>b>>c; std::cout<<a[0]<<b[0]<<c[0]<<std::endl; }
### Prompt Create a solution in cpp for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> std::string a,b,c; int main() { std::cin>>a>>b>>c; std::cout<<a[0]<<b[0]<<c[0]<<std::endl; } ```
#include <iostream> using namespace std; int main(void){ string a,s; cin>>a>>s; cout<<'A'<<s.at(0)<<'C'<<endl; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(void){ string a,s; cin>>a>>s; cout<<'A'<<s.at(0)<<'C'<<endl; } ```
#include <bits/stdc++.h> using namespace std; int main() { string S; cin >> S >> S; cout << "A" << S.at(0) << "C" << endl; }
### Prompt Please formulate a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string S; cin >> S >> S; cout << "A" << S.at(0) << "C" << endl; } ```
#include <iostream> using namespace std; int main() { string s1,s2,s3; cin>>s1>>s2>>s3; cout<<"A"<<s2[0]<<"C"; return 0; }
### Prompt Please create a solution in Cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main() { string s1,s2,s3; cin>>s1>>s2>>s3; cout<<"A"<<s2[0]<<"C"; return 0; } ```
#include<iostream> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]; }
### Prompt Please provide a cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]; } ```
#include <bits/stdc++.h> using namespace std; int main() { string s,t; cin >> s>>t; cout<<'A'<<t.at(0)<<'C'<<endl; }
### Prompt Construct a Cpp code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string s,t; cin >> s>>t; cout<<'A'<<t.at(0)<<'C'<<endl; } ```
#include<iostream> using namespace std; int main(){ string str; cin>>str; cin>>str; cout<<"A"<<str[0]<<"C"; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main(){ string str; cin>>str; cin>>str; cout<<"A"<<str[0]<<"C"; } ```
#include <iostream> using namespace std; int main() { string s; cin >> s; cin >> s; cout << "A" << s[0] << "C" << endl; return 0; }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main() { string s; cin >> s; cin >> s; cout << "A" << s[0] << "C" << endl; return 0; } ```
#include<iostream> using namespace std; int main(){ string s;cin>>s>>s; cout<<"A"<<s[0]<<"C\n";}
### Prompt Create a solution in Cpp for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main(){ string s;cin>>s>>s; cout<<"A"<<s[0]<<"C\n";} ```
#include <iostream> using namespace std; string a, b, c; int main() { cin >> a >> b; cout << 'A' << b[0] << 'C'; return 0; }
### Prompt Please provide a cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; string a, b, c; int main() { cin >> a >> b; cout << 'A' << b[0] << 'C'; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main () { string x;cin >> x >> x; cout<<'A'; cout << x[0] << 'C' << endl; }
### Prompt Please formulate a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main () { string x;cin >> x >> x; cout<<'A'; cout << x[0] << 'C' << endl; } ```
#include<iostream> #include<string.h> using namespace std; string a,b; int main() { cin >> a >> b; printf("A%cC",b[0]); }
### Prompt Generate a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> #include<string.h> using namespace std; string a,b; int main() { cin >> a >> b; printf("A%cC",b[0]); } ```
#include <bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin >> a>>b>>c; cout << a[0] << b[0] << c[0]; }
### Prompt Create a solution in cpp for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin >> a>>b>>c; cout << a[0] << b[0] << c[0]; } ```
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s >> s; cout << "A" <<s[0] << "C"; }
### Prompt Develop a solution in CPP to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s >> s; cout << "A" <<s[0] << "C"; } ```
#include <bits/stdc++.h> using namespace std; int main() { string a,b;cin >> a >> b; cout << "A" << b[0] << "C"; }
### Prompt Please create a solution in CPP to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string a,b;cin >> a >> b; cout << "A" << b[0] << "C"; } ```
#include <bits/stdc++.h> using namespace std; int main(void){ string a,b,c; cin>>a>>b>>c; cout<<"A"<<b.at(0)<<"C"<<endl; }
### Prompt Please provide a cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(void){ string a,b,c; cin>>a>>b>>c; cout<<"A"<<b.at(0)<<"C"<<endl; } ```
#include "bits/stdc++.h" using namespace std; int main(){ string A,S,B; cin>>A>>S>>B; cout<<A[0]<<S[0]<<B[0]<<endl; }
### Prompt Create a solution in Cpp for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include "bits/stdc++.h" using namespace std; int main(){ string A,S,B; cin>>A>>S>>B; cout<<A[0]<<S[0]<<B[0]<<endl; } ```
#include <bits/stdc++.h> using namespace std; int main(){ string s,a; cin>>s>>a>>s; cout<<"A"<<a[0]<<"C"<<endl; return 0; }
### Prompt Develop a solution in CPP to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string s,a; cin>>s>>a>>s; cout<<"A"<<a[0]<<"C"<<endl; return 0; } ```
#include <iostream> using namespace std; int main() { string a,b,c; cin >> a >> b >> c; cout << a[0] << b[0] << c[0]; }
### Prompt Please create a solution in Cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main() { string a,b,c; cin >> a >> b >> c; cout << a[0] << b[0] << c[0]; } ```
#include <cstdio> int main() { char s; scanf("%*s %c", &s); printf("A%cC\n", s); }
### Prompt Create a solution in cpp for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <cstdio> int main() { char s; scanf("%*s %c", &s); printf("A%cC\n", s); } ```
#include<bits/stdc++.h> using namespace std; string a,b,c; int main(){ cin >> a >> b >> c ; cout << a[0] << b[0] << c[0]; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; string a,b,c; int main(){ cin >> a >> b >> c ; cout << a[0] << b[0] << c[0]; } ```
#include <bits/stdc++.h> using namespace std; int main(){ string s,A,B; cin>>A>>s>>B; cout<<"A"<<s.at(0)<<"C"<<endl; }
### Prompt Generate a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string s,A,B; cin>>A>>s>>B; cout<<"A"<<s.at(0)<<"C"<<endl; } ```
#include "bits/stdc++.h" using namespace std; int main(){ string a; cin >> a >> a; cout << "A" << a[0] << "C" << endl; }
### Prompt Please create a solution in Cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include "bits/stdc++.h" using namespace std; int main(){ string a; cin >> a >> a; cout << "A" << a[0] << "C" << endl; } ```
#include<stdio.h> int main() { char s[120]; scanf("%s", s); scanf("%s", s); printf("A%cC\n", s[0]); }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<stdio.h> int main() { char s[120]; scanf("%s", s); scanf("%s", s); printf("A%cC\n", s[0]); } ```
#include<bits/stdc++.h> using namespace std; int main(){ string a,s,d; cin >>a>>s>>d; cout<<a[0]<<s[0]<<d[0]; }
### Prompt Please provide a cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string a,s,d; cin >>a>>s>>d; cout<<a[0]<<s[0]<<d[0]; } ```
#include <cstdio> using namespace std; int main() { char x; scanf("AtCoder %c", &x); printf("A%cC\n", x); }
### Prompt Develop a solution in CPP to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <cstdio> using namespace std; int main() { char x; scanf("AtCoder %c", &x); printf("A%cC\n", x); } ```
#include <bits/stdc++.h> using namespace std; int main() { string s,t,u; cin>>s>>t>>u; cout<<"A"<<t.at(0)<<"C"<<endl; }
### Prompt Please formulate a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string s,t,u; cin>>s>>t>>u; cout<<"A"<<t.at(0)<<"C"<<endl; } ```
#include<iostream> using namespace std; int main() { string a,b,c; cin>>a>>b>>c; cout<<'A'<<b[0]<<'C'; return 0; }
### Prompt Create a solution in CPP for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main() { string a,b,c; cin>>a>>b>>c; cout<<'A'<<b[0]<<'C'; return 0; } ```
#import <iostream> using namespace std; int main(){ char a[100],b[100],c[100]; cin >> a>>b>>c; cout <<"A"<<b[0]<<"C"; }
### Prompt Your challenge is to write a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #import <iostream> using namespace std; int main(){ char a[100],b[100],c[100]; cin >> a>>b>>c; cout <<"A"<<b[0]<<"C"; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string a; char b; cin>>a>>b; cout<<"A"<<b<<"C"; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string a; char b; cin>>a>>b; cout<<"A"<<b<<"C"; } ```
#include<iostream> using namespace std; string a,b,c; int main() { cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; return 0; }
### Prompt Please formulate a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; string a,b,c; int main() { cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main() { string s, t; cin >> s >> t; cout << 'A' << t[0] << 'C' << endl; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string s, t; cin >> s >> t; cout << 'A' << t[0] << 'C' << endl; } ```
#include <stdio.h> int main(void){ char c; scanf("AtCoder %c",&c); printf("A%cC\n",c); return 0; }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <stdio.h> int main(void){ char c; scanf("AtCoder %c",&c); printf("A%cC\n",c); return 0; } ```
#include<bits/stdc++.h> using namespace std; string s,t,u; int main(){ cin>>s>>t>>u; cout<<"A"<<t[0]<<"C"<<endl; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; string s,t,u; int main(){ cin>>s>>t>>u; cout<<"A"<<t[0]<<"C"<<endl; } ```
#include <bits/stdc++.h> using namespace std; int main(){ string A,X,S; cin>>A>>X>>S; cout<<A[0]<<X[0]<<S[0]<<endl; }
### Prompt Construct a cpp code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string A,X,S; cin>>A>>X>>S; cout<<A[0]<<X[0]<<S[0]<<endl; } ```
#include <iostream> using namespace std; int main(){ string s,d; cin>>s>>d>>s; cout<<"A"<<d[0]<<"C"; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(){ string s,d; cin>>s>>d>>s; cout<<"A"<<d[0]<<"C"; } ```
#include<iostream> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]<<endl; }
### Prompt Your challenge is to write a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]<<endl; } ```
#include <iostream> using namespace std; int main(void){ char c; scanf("AtCoder %c", &c); cout << "A" << c << "C\n"; }
### Prompt In Cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(void){ char c; scanf("AtCoder %c", &c); cout << "A" << c << "C\n"; } ```
#include <bits/stdc++.h> using namespace std; int main() { string S,H,T; cin >> S>>H>>T; cout<<S[0]<<H[0]<<T[0]<<endl; }
### Prompt Please formulate a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string S,H,T; cin >> S>>H>>T; cout<<S[0]<<H[0]<<T[0]<<endl; } ```
#include <bits/stdc++.h> using namespace std; int main() { string a,b,x; cin >>a>>x>>b; cout << 'A' << x[0] << 'C' << endl; }
### Prompt Your challenge is to write a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string a,b,x; cin >>a>>x>>b; cout << 'A' << x[0] << 'C' << endl; } ```
#include <bits/stdc++.h> using namespace std; int main() { string x,y; cin >> x>>y; cout<<"A"<<y.at(0)<<"C"<<endl; }
### Prompt Create a solution in CPP for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string x,y; cin >> x>>y; cout<<"A"<<y.at(0)<<"C"<<endl; } ```
#include<iostream> using namespace std; int main() { string A,B,C; cin>>A>>B>>C; cout<<A[0]<<B[0]<<C[0]; return 0; }
### Prompt Please create a solution in CPP to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main() { string A,B,C; cin>>A>>B>>C; cout<<A[0]<<B[0]<<C[0]; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b>>c; cout<<"A"<<b[0]<<"C"; return 0; }
### Prompt Please provide a CPP coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b>>c; cout<<"A"<<b[0]<<"C"; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main() { string a,b,c; cin>>a>>b; b = b.at(0); cout<<'A'<<b<<'C'; }
### Prompt Construct a CPP code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string a,b,c; cin>>a>>b; b = b.at(0); cout<<'A'<<b<<'C'; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string s[3];cin>>s[0]>>s[1]>>s[2]; cout<<"A"<<s[1][0]<<"C"; }
### Prompt Please provide a cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string s[3];cin>>s[0]>>s[1]>>s[2]; cout<<"A"<<s[1][0]<<"C"; } ```
#include<iostream> using namespace std; int main (){ string s,t,r; cin>>t>>s>>r; cout<<"A"<<s[0]<<"C"; return 0; }
### Prompt In CPP, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main (){ string s,t,r; cin>>t>>s>>r; cout<<"A"<<s[0]<<"C"; return 0; } ```
#include<stdio.h> int main(void){ char a[100],b[100],c[100]; scanf("%s %s %s",a,b,c); printf("A%cC",b[0]); }
### Prompt Please formulate a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<stdio.h> int main(void){ char a[100],b[100],c[100]; scanf("%s %s %s",a,b,c); printf("A%cC",b[0]); } ```
#include <bits/stdc++.h> using namespace std; int main() { string A,S,B; cin >> A>>S>>B; cout<<"A"<<S.at(0)<<"C"<<endl; }
### Prompt Generate a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string A,S,B; cin >> A>>S>>B; cout<<"A"<<S.at(0)<<"C"<<endl; } ```
#include <iostream> #include <string> using namespace std; int main(){ string a; cin>>a>>a; cout<<'A'<<a[0]<<'C'<<endl; }
### Prompt Please formulate a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> #include <string> using namespace std; int main(){ string a; cin>>a>>a; cout<<'A'<<a[0]<<'C'<<endl; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]; }
### Prompt Your task is to create a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; cin>>s>>s1>>s2; cout<<s[0]<<s1[0]<<s2[0]; } ```
#include<bits/stdc++.h> using namespace std; string a,b,c; int main() { cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]<<endl; }
### Prompt Please create a solution in cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; string a,b,c; int main() { cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]<<endl; } ```
#include<bits/stdc++.h> using namespace std; int main(void){ string a,s,c; cin>>a>>s>>c; cout<<'A'<<s.at(0)<<'C'; }
### Prompt Your challenge is to write a cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(void){ string a,s,c; cin>>a>>s>>c; cout<<'A'<<s.at(0)<<'C'; } ```
#include <bits/stdc++.h> using namespace std; int main() { string S,S2; cin >> S2 >> S; cout << "A" << S.at(0) << "C" << endl; }
### Prompt Generate a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string S,S2; cin >> S2 >> S; cout << "A" << S.at(0) << "C" << endl; } ```
#include <cstdio> using namespace std; int main() { char s[128]; scanf("%s",s); scanf("%s",s); printf("A%cC\n",s[0]); }
### Prompt Your task is to create a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <cstdio> using namespace std; int main() { char s[128]; scanf("%s",s); scanf("%s",s); printf("A%cC\n",s[0]); } ```
#include <bits/stdc++.h> using namespace std; string a,b,c; int main() { cin>>a>>b>>c; printf("A%cC",b[0]); return 0; }
### Prompt Please provide a Cpp coded solution to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; string a,b,c; int main() { cin>>a>>b>>c; printf("A%cC",b[0]); return 0; } ```
#include "bits/stdc++.h" using namespace std; int main() { string s; while(cin >> s) cout << s[0]; }
### Prompt Your task is to create a CPP solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include "bits/stdc++.h" using namespace std; int main() { string s; while(cin >> s) cout << s[0]; } ```
#include<bits/stdc++.h> using namespace std; string a,b,c; int main(){ cin>>a>>b>>c; cout<<"A"<<b[0]<<"C"<<endl; }
### Prompt In Cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; string a,b,c; int main(){ cin>>a>>b>>c; cout<<"A"<<b[0]<<"C"<<endl; } ```
#include<bits/stdc++.h> using namespace std; int main(void){ string a,s,c; cin>>a>>s>>c; cout<<'A'<<s[0]<<'C'<<endl; }
### Prompt Please formulate a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(void){ string a,s,c; cin>>a>>s>>c; cout<<'A'<<s[0]<<'C'<<endl; } ```
#include <iostream> using namespace std; int main(){ string a,s; cin>>a>>s; cout<<"A"<<s[0]<<"C"; }
### Prompt Construct a cpp code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(){ string a,s; cin>>a>>s; cout<<"A"<<s[0]<<"C"; } ```
#include<iostream> using namespace std; int main() { string x,y,z; cin>>x>>y>>z; cout<<x[0]<<y[0]<<z[0]; return 0; }
### Prompt Develop a solution in cpp to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; int main() { string x,y,z; cin>>x>>y>>z; cout<<x[0]<<y[0]<<z[0]; return 0; } ```
#include <bits/stdc++.h> using namespace std; int main(){ string S,B,D; cin>>S>>B>>D; cout<<"A"<<B.at(0)<<"C"<<endl; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main(){ string S,B,D; cin>>S>>B>>D; cout<<"A"<<B.at(0)<<"C"<<endl; } ```
#include<stdio.h> int main() { char a[101], b[101], c[101]; scanf("%s%s%s", a, b, c); printf("%c%c%c\n",a[0], b[0], c[0]); }
### Prompt Your challenge is to write a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<stdio.h> int main() { char a[101], b[101], c[101]; scanf("%s%s%s", a, b, c); printf("%c%c%c\n",a[0], b[0], c[0]); } ```
#include <bits/stdc++.h> using namespace std; int main() { string a,s,c; cin>>a>>s>>c; cout<<"A"<<s[0]<<"C"<<endl; }
### Prompt In cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string a,s,c; cin>>a>>s>>c; cout<<"A"<<s[0]<<"C"<<endl; } ```
#include <iostream> using namespace std; int main(void){ cin.ignore(8); char c; cin>>c; cout<<"A"<<c<<"C"<<endl; }
### Prompt Construct a CPP code solution to the problem outlined: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main(void){ cin.ignore(8); char c; cin>>c; cout<<"A"<<c<<"C"<<endl; } ```
#include <bits/stdc++.h> using namespace std; int main() { string a, x; cin >> a >> x; cout << "A" << x.at(0) << "C"; }
### Prompt Develop a solution in Cpp to the problem described below: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <bits/stdc++.h> using namespace std; int main() { string a, x; cin >> a >> x; cout << "A" << x.at(0) << "C"; } ```
#include<bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b; cout<<'A'<<b.at(0)<<'C'<<endl; }
### Prompt Please create a solution in cpp to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; int main(){ string a,b,c; cin>>a>>b; cout<<'A'<<b.at(0)<<'C'<<endl; } ```
#include<iostream> using namespace std; char s1[101],s2[110],s3[101]; int main() { cin>>s1>>s2>>s3; cout<<s1[0]<<s2[0]<<s3[0]; }
### Prompt Create a solution in CPP for the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<iostream> using namespace std; char s1[101],s2[110],s3[101]; int main() { cin>>s1>>s2>>s3; cout<<s1[0]<<s2[0]<<s3[0]; } ```
#include <iostream> using namespace std; int main() { string s; cin >> s >> s; cout << "A" << s.at(0) << "C" << endl; }
### Prompt In Cpp, your task is to solve the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include <iostream> using namespace std; int main() { string s; cin >> s >> s; cout << "A" << s.at(0) << "C" << endl; } ```
#include<bits/stdc++.h> using namespace std; string a,b,c;int z; int main(){ cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; return 0; }
### Prompt Please formulate a Cpp solution to the following problem: Snuke is going to open a contest named "AtCoder s Contest". Here, s is a string of length 1 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters. Snuke has decided to abbreviate the name of the contest as "AxC". Here, x is the uppercase English letter at the beginning of s. Given the name of the contest, print the abbreviation of the name. Constraints * The length of s is between 1 and 100, inclusive. * The first character in s is an uppercase English letter. * The second and subsequent characters in s are lowercase English letters. Input The input is given from Standard Input in the following format: AtCoder s Contest Output Print the abbreviation of the name of the contest. Examples Input AtCoder Beginner Contest Output ABC Input AtCoder Snuke Contest Output ASC Input AtCoder X Contest Output AXC ### Response ```cpp #include<bits/stdc++.h> using namespace std; string a,b,c;int z; int main(){ cin>>a>>b>>c; cout<<a[0]<<b[0]<<c[0]; return 0; } ```