Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,21 @@ int main(){
cout<< "Second number: ";
cin>> second;

<<<<<<< HEAD
std::cout<< "Addition: "<< first << "+" << second << "=";
std::cout<< (first+second) << std::endl;
std::cout<< "Subtraction: "<< first << "-" << second << "=";
std::cout<< (first-second) << std::endl;
std::cout<< "Multiplecation: "<< first << "*" << second << "=";
std::cout<< (first*second) << std::endl;
=======
cout<< "Addition: "<< first << "+" << second << "=";
cout<< (first+second) << endl;
cout<< "Subtraction: "<< first << "-" << second << "=";
cout<< (first-second) << endl;
cout<< "Multiplication: "<< first << "*" << second << "=";
cout<< (first*second) << endl;
>>>>>>> 14936c0a26d39b8368f0edd5a9f994a8c75474e4

return 0;
}