Email Reminders || April Cook-Off 2022 Editorial

Here Below I written my Solution of Problem Email Reminders in Two different Languages C++ and Python.

Solution in C++ :

#include <iostream>
using namespace std;

int main()
{
	int u, n;
	cin >> u >> n;
	cout << u - n ;
	return 0;
}

Solution in Python3 :

u, n = map(int, input().split())
print(u - n)