제출 #896956

#제출 시각아이디문제언어결과실행 시간메모리
896956pccNecklace (Subtask 4) (BOI19_necklace4)C++14
0 / 15
1 ms344 KiB
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second
#define tlll tuple<ll,ll,ll>


string a,b;

int main(){
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	cin>>a>>b;
	cout<<a+b;
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...