Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- int main()
- {
- int n;
- cin>>n;
- int x;
- cin >>x;
- set<int>st;
- for(int i=0;i<x;i++){
- int q;
- cin>>q;
- st.insert(q);
- }
- int y;
- cin>>y;
- for(int k;k<y;k++)
- {
- int o;
- cin>>o;
- st.insert(o);
- }
- if(st.size()==n){
- cout<<"I become the guy."<<endl;
- }
- else{
- cout<<"Oh, my keyboard!"<<endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement