Problem1519--C Programming Practicals 1 C Basics

1519: C Programming Practicals 1 C Basics

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 459  Solved: 222
[Submit] [Status] [Web Board] [Creator:]

Description

Write a C program that accepts two integers from the user and calculate the sum and the product of the two integers.

Input

Input the first integer:20 Input the second integer:30

Output

Sum of the two integers 20 and 30 = 50 Product of the two integers 20 and 30 = 600

Sample Input Copy

20
30

Sample Output Copy

Sum of the two integers 20 and 30 = 50
Product of the two integers 20 and 30 = 600

Source/Category

99