Created
October 12, 2018 13:58
-
-
Save tabvn/bfaf47ed4c6cf8325dcdde48cacea2bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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