Skip to content

Instantly share code, notes, and snippets.

@modos
Created July 9, 2022 06:49
Show Gist options
  • Save modos/e6d9f313335d9e7f304a715279d6f547 to your computer and use it in GitHub Desktop.
Save modos/e6d9f313335d9e7f304a715279d6f547 to your computer and use it in GitHub Desktop.
بهداشت و سلامت
#include <iostream>
using namespace std;
int main()
{
int n, x;
cin >> n;
cin >> x;
switch(x){
case 0:
cout << 20;
break;
case 7:
cout << n;
break;
default:
n = n - x;
int res = n < 0 ? 0 : n;
cout << res;
break;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment