Sum of two numbers using functions


Submit solution

Points: 10 (partial)
Time limit: 8.0s
Memory limit: 64M

Author:
Problem type
Allowed languages
C

Problem Definition

Given two integers, find their sum using functions.

Input format

A single line containing two integer values separated by a space, say 5 and 6

Output Format

A message of the format " The sum of 5 and 6 is 11"

Sample Input

5 6

Sample output

Sum of 5 and 6 is 11


Comments

There are no comments at the moment.