Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 498 Bytes

File metadata and controls

41 lines (31 loc) · 498 Bytes

Code Style

Please follow this code style while writing the code

Part 1

The actual code for the issue being solved

#include<bits/stdc++.h>
using namespace std;

int main()
{
  int num1, num2;
  cout << "Enter two numbers\n";
  cin >> num1 >> num2;
  
  cout << num1 + num2;
  
  return 0
}

Part 2

A commented out example of the above code

/*
  Enter two numbers
  1 5
*/

Part 3

Commented out output of the above example

/*
  6
*/