Multiples
Adapted by Neilor Tonin, URI Brazil
Timelimit: 1
Read two nteger values (A and B). After, the program should print the message "Sao Multiplos" (are multiples) or "Nao sao Multiplos" (aren’t multiples), corresponding to the read values.
Input
The input has two integer numbers.
Output
Print the relative message to the input as stated above.
Input Sample | Output Sample |
6 24 | Sao Multiplos |
6 25 | Nao sao Multiplos |
Solution:
- [tab]
- C
#include<stdio.h> int main() { int A, B; scanf("%d %d", &A, &B); if (B % A == 0 || A % B == 0) { printf("Sao Multiplos\n"); } else { printf("Nao sao Multiplos\n"); } return 0; }
- C++
#include <iostream> using namespace std; int main() { int x, y; cin >> x >> y; if(x < y){ if(y % x == 0){cout << "Sao Multiplos" << endl;} else{cout << "Nao sao Multiplos" << endl;} }else{ if(x % y == 0){cout << "Sao Multiplos" << endl;} else{cout << "Nao sao Multiplos" << endl;} } return 0; }