Advertisement
Zeinab_Hamdy

Untitled

Nov 26th, 2022
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void Zainab(){
  5.     ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
  6.         #ifndef ONLINE_JUDGE
  7.             freopen("input.txt", "r", stdin);
  8.             freopen("output.txt", "w", stdout);
  9.         #endif
  10. }
  11.  
  12. int main(){
  13.  
  14.     Zainab();  
  15.    
  16.  
  17.  
  18.  
  19.     return 0;
  20.  
  21.    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement