#include <iostream>
using namespace std;
int main() {
int A, B;
cin >> A;
cin >> B;
int X = A + B;
cout << "X" << " " << "=" << " "<< X << endl;
return 0;
}
#include <iostream>
using namespace std;
int main() {
int A, B, X;
cin >> A >> B;
X = A + B;
cout << "X = " << X << endl;
return 0;
}
Code Example |
---|
Cpp :: ex:c++ gcc start adress |
Cpp :: amusia |
Cpp :: geekforgeeks stacks |
Cpp :: how to analyse a poem |
Cpp :: powers of 2 in cpp |
Cpp :: how to initialize a vector in c++ |
Cpp :: c++ max and min of vector |
Cpp :: random c++ |
Cpp :: how to convert n space separated integers in c++ |
Cpp :: C++ area & circumference of a circle |
Cpp :: modify value in map c++ |
Cpp :: c++ for |
Cpp :: what does | mean in c++ |
Cpp :: frequency of characters in a string in c++ |
Cpp :: C++ mutex header |
Cpp :: friend class c++ |
C :: how to use gotoxy in c language |
C :: how to download file in powershell |
C :: adb switch to usb |
C :: printf with bool |
C :: how to print int in c |
C :: c get random float |
C :: how to read space separated words in c |
C :: const godot gdscript |
C :: string input in c |
C :: connect servo to arduino |
C :: c string |
C :: .sh template |
C :: binary to decimal in c |
C :: to run Blazor project using CLI |