fork(4) download
  1. //MS_15
  2. #include <iostream>
  3. #include <cmath>
  4. using namespace std;
  5.  
  6. int main() {
  7. unsigned char a, b, tmp, c1, c2;
  8. scanf("%c", &a); //Первый ключ
  9. scanf("%c", &c1); //Пробел
  10. scanf("%c", &b); //Второй ключ
  11. scanf("%c", &c1); //Пробел
  12. while (EOF != scanf("%c", &c1)) //Пока не кончатся входные данные
  13. {
  14. scanf("%c", &c2);
  15. tmp=round((c1-b+256*c2)*1.0/a);
  16. printf("%c", tmp);
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
Standard output is empty