Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void pecati(int x) {
- cout << x + 1 << endl;
- }
- int main() {
- int n;
- cin >> n;
- pecati(n);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement