Back
Close

Computing with Data

elgeish
577K views

Input - Part II

#include <iostream>
#include <string>
using namespace std;

int main() {
  int c, d;
  
  // read buffered data from the standard input stream, 
  // convert the first two inputs into integers, and 
  // store them in c and d
  cin >> c >> d;
  
  return 0;
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io