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