Advertisement
aiNayan

Contest2

Jul 19th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.     int a = 5, b = 2;
  5.     printf("Addition: %d + %d = %d\n", a, b, a + b);
  6.     printf("subtraction: %d - %d = %d", a, b, a - b);
  7.     return 0;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement