13 lines
No EOL
213 B
C++
13 lines
No EOL
213 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
unsigned int t;
|
|
std::cin >> t;
|
|
for (int i = 0; i < t; i++) {
|
|
unsigned int v;
|
|
std::cin >> v;
|
|
std::cout << (v + 1) << std::endl;
|
|
}
|
|
return 0;
|
|
} |