Programming Languages, C, Python, c++, c#, java, javascript, html, css, Go
#include <stdio.h>
#include <conio.h>
int main ()
{
int a, b;
a=15;
b=84;
printf ("a + b = %d \n", a+b);
printf ("a*b = %d\n", a*b);
}
// Code ScreenShot:
Comments
Post a Comment