Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. /*
  2. #include <stdio.h>
  3. int main(){
  4. printf("Hello World!!!\n");
  5. return 0;
  6. }*/
  7.  
  8. #include <iostream>
  9. int main(){
  10. std::cout<<"Hello World!!!\n";
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement