Skip to content

Commit e14b11d

Browse files
fix indentation
1 parent 0c3988a commit e14b11d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

input.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
using namespace std;
55

66
int main() {
7-
int a;
8-
int n = 2;
7+
int a;
8+
int n = 2;
99
while(cin >> a){
1010
cout << "Read number: " << a << endl;
1111
if(--n == 0) break;
1212
}
1313

14-
string str;
15-
while(getline(cin, str)){
16-
cout << str << endl;
17-
}
18-
return 0;
14+
string str;
15+
while(getline(cin, str)){
16+
cout << str << endl;
17+
}
18+
return 0;
1919
}
2020

2121
/*

0 commit comments

Comments
 (0)