Link:ABC344
签到题。
#include <bits/stdc++.h>
using namespace std;
int main(){
int A,B;
cin>>A>>B;
for(int i=0;i<10;i++){
if(i!=(A+B))
cout<<i<<endl;
//记得return
}
}
依旧签到。
include <bits/stdc++.h>
using namespace std;
int main(){
int N;
cin>>N;
vector<vector<int>> g(N);
for(int i=0;i<N;i++){
for(int j=0;j<N;j++){