Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 267 Bytes

rag.md

File metadata and controls

11 lines (11 loc) · 267 Bytes

#include <stdio.h> int main() { int x, y, result; printf("\nInput the first integer: "); scanf("%d", &x); printf("\nInput the second integer: "); scanf("%d", &y); result = x * y; printf("Product of the above two integers = %d\n", result); }