Advertisement
Dennnhhhickk

Untitled

Oct 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // ConsoleApplication3.cpp: определяет точку входа для консольного приложения.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include <fstream>
  7. #include <stdio.h>
  8.  
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13. freopen("input.txt", "r", stdin);
  14. freopen("output.txt", "w", stdout);
  15. int a;
  16. cin >> a;
  17. cout << a + 1 << endl;
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement