Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
MoEngage helps the Chef send email reminders about rated contests to the participants.
There are a total of N participants on Chef’s platform, and U of them have told Chef not to send emails to them.
If so, how many participants should MoEngage send the contest emails to?
Output in a single line, the number of users MoEngage has to send an email to.
Input: 100 7
Output: 93
Out of 100 users, 7 do not want to receive reminders. Hence, MoEngage needs to send email to 93 users.
Input: 4456 342
Output: 4114
Out of 4456 users, 342 do not want to receive reminders. Hence MoEngage needs to send email to 4114 users.
#include <iostream>
using namespace std;
int main() {
int n,u;
cin>>n>>u;
cout<<n-u<<endl;
return 0;
}
n,u=map(int,input().split())
print(n-u)
import java.util.*;
import java.lang.*;
import java.io.*;
class Codechef
{
public static void main (String[] args) throws java.lang.Exception
{
Scanner sc=new Scanner(System.in);
int u=sc.nextInt();
int n=sc.nextInt();
System.out.println(u-n);
}
}
In our experience, we suggest you solve this Email Reminders CodeChef Solution and gain some new skills from Professionals completely free and we assure you will be worth it.
If you are stuck anywhere between any coding problem, just visit Queslers to get the Email Reminders CodeChef Solution
I hope this Email Reminders CodeChef Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Coding Solutions.
This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.
Keep Learning!
More Coding Solutions >>