#include <iostream> using namespace std; int main() { int n = 1000; int a = 4; int b = 220; int c = n - (a * b); cout << c<<endl; return 0; }