Guest User

Untitled

a guest
Nov 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include "pch.h"
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. void g();
  7.  
  8. int main()
  9. {
  10. g();
  11. }
  12.  
  13. void g() {
  14.  
  15. cout << 4;
  16. }
Add Comment
Please, Sign In to add comment