Advertisement
sigmachto

Untitled

Sep 23rd, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int f1(int x) {
  4.     return x;
  5. }
  6. int main() {
  7.     int x;
  8.     cin >> x;
  9.     cout << f1(x);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement