Advertisement
Guest User

C++

a guest
May 8th, 2015
308
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 <cstdio>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     char* n = "duom.in";
  9.     freopen(n, "r", stdin);
  10.     freopen(n, "w", stdout);
  11.  
  12.     int a;
  13.  
  14.     cin >> a;
  15.     a=5;
  16.     cout << a;
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement