Computer Science, asked by akshayakz10117, 7 months ago

A=1130
B=21
Print(A%B)=​

Answers

Answered by aryanpr115
0

Answer:

the language I am using is C++

17

Explanation:

#include<iostream>

using namespace std;

int main(){

long int A,B;

cin>>A>>B;

long int X= A%B;

cout<<X<<endl;

return 0;

}

plz mark as brainliest

Similar questions