Guest User

Untitled

a guest
Jul 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3.  
  4. int main(void)
  5. {
  6. int num1;
  7. int num2;
  8. int sum;
  9. printf("Hello World \nWazzup? \nEnter your numbers\n");
  10.  
  11. scanf("%d", &num1);
  12. scanf("%d", &num2);
  13.  
  14. sum = num1 + num2;
  15.  
  16. printf("The sum is %d cm \n");
  17. printf("This is the length of your penis in centimeters \nPress any key to exit!");
  18.  
  19.  
  20. getch();
  21. }
Add Comment
Please, Sign In to add comment