Skip to content

Instantly share code, notes, and snippets.

@tabvn
Created October 12, 2018 13:58
Show Gist options
  • Select an option

  • Save tabvn/bfaf47ed4c6cf8325dcdde48cacea2bf to your computer and use it in GitHub Desktop.

Select an option

Save tabvn/bfaf47ed4c6cf8325dcdde48cacea2bf to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
using namespace std;
int main(){
int m,k;
string s;
cin >> m >> k;
getline(cin, s, '.');
cout << "m: " << m << " k:"<<k << " s:" << s << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment