Advertisement
STANAANDREY

read with next

Jul 9th, 2021
992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. template<typename dtype = int64_t>
  5. dtype nxt(istream &in = cin) {
  6.     dtype x;
  7.     in >> x;
  8.     return x;
  9. }
  10.  
  11. int main() {
  12.     int n = nxt<>();
  13.     cerr << n << endl;
  14.     return 0;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement