Toph Problem Add Them Up Solution in C++
Problem Link
Toph Problem Add Them Up Solution in C++
Solution:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}
Toph Problem Add Them Up Solution in C++
Solution:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}
No comments