Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- int main() {
- string input;
- cin >> input;
- int smallNum = 2147483647; // INT_MAX
- while (input != "Stop") {
- int n = stoi(input);
- if (n < smallNum) {
- smallNum = n;
- }
- cin >> input;
- }
- cout << smallNum << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement