# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1187371 | kashfy1234 | A + B (IOI24_aplusb) | C++17 | 0 ms | 0 KiB |
//inshaAllah
#include <bits/stdc++.h>
using namespace std;
void sum(int a, int b){
cout<<a+b<<"\n";
return ;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int a;
cin>>a;
int b;
cin>>b;
sum(a,b);
}