Little reformat

This commit is contained in:
2022-03-26 16:07:50 +01:00
parent 49fe78dbfa
commit 2f9d0e0fea

View File

@@ -33,7 +33,7 @@ int main() {
getline(cin, line);
try {
number = std::stoi(line);
if(number >= min && number <= max) {
if (number >= min && number <= max) {
x.push_back(number);
}
} catch (std::exception ex) {