Advertisement
Josif_tepe

Untitled

May 14th, 2021
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     ifstream cin("input.txt");
  8.     ofstream cout("output.txt");
  9.    
  10.     int n;
  11.     cin >> n;
  12.    
  13.     cout << n << endl;
  14.    
  15.     return 0;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement