My issue
Rearrange the code
Learning course: Practice C++
Problem Link: CodeChef: Practical coding for everyone
Rearrange the code
Learning course: Practice C++
Problem Link: CodeChef: Practical coding for everyone
@sheetalbapure
this will be the correct rearrangement
#include <bits/stdc++.h>
using namespace std;
int main() {
int a;
int b;
cin >> a >> b;
int sum = a + b;
cout << sum;
return 0;
}