Advertisement
dimuster

genius

Sep 11th, 2021
1,200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.15 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. char a;
  7.  
  8. int main() {
  9.     if (true) {
  10.         cin >> a;
  11.     }
  12.     if (!false) {
  13.         if (a == 'q') {
  14.             if (1 == 1) {
  15.                 cout << "w";
  16.             }
  17.         }
  18.         if (a == 'w') {
  19.             if ((char) 'e' == (char) 'e') {
  20.                 cout << "e";
  21.             }
  22.         }
  23.         if (a == 'e') {
  24.             if (1 % 2 == 1) {
  25.                 cout << "r";
  26.             }
  27.         }
  28.         if (a == 'r') {
  29.             if (0 == 0) {
  30.                 cout << "t";
  31.             }
  32.         }
  33.         if (a == 't') {
  34.             if (56 == 56) {
  35.                 cout << "y";
  36.             }
  37.         }
  38.         if (a == 'y') {
  39.             if (12 * 13 == 13 * 12) {
  40.                 cout << "u";
  41.             }
  42.         }
  43.         if (a == 'u') {
  44.             if (4 == 0 | true) {
  45.                 cout << "i";
  46.             }
  47.         }
  48.         if (a == 'i') {
  49.             if (!(4 > 45)) {
  50.                 cout << "o";
  51.             }
  52.         }
  53.         if (a == 'o') {
  54.             if (4 == 2 | 10 / 2 == 5) {
  55.                 cout << "p";
  56.             }
  57.         }
  58.         if (a == 'p') {
  59.             if (523 == 523) {
  60.                 cout << "a";
  61.             }
  62.         }
  63.         if (a == 'a') {
  64.             if (!((char) 'w' == (char) 'e')) {
  65.                 cout << "s";
  66.             }
  67.         }
  68.         if (a == 's') {
  69.             if (!(5 == 116)) {
  70.                 cout << "d";
  71.             }
  72.         }
  73.         if (a == 'd') {
  74.             if (1234 * 4321 == 4321 * 1234) {
  75.                 cout << "f";
  76.             }
  77.         }
  78.         if (a == 'f') {
  79.             if (1 % 2 == 1) {
  80.                 cout << "g";
  81.             }
  82.         }
  83.         if (a == 'g') {
  84.             if (4 == 0 | true) {
  85.                 cout << "h";
  86.             }
  87.         }
  88.         if (a == 'h') {
  89.             if ((char) 't' == (char) 't') {
  90.                 cout << "j";
  91.             }
  92.         }
  93.         if (a == 'j') {
  94.             if ('5' == '5') {
  95.                 cout << "k";
  96.             }
  97.         }
  98.         if (a == 'k') {
  99.             if (4 == 32 | true) {
  100.                 cout << "l";
  101.             }
  102.         }
  103.         if (a == 'l') {
  104.             if (!!true) {
  105.                 cout << "z";
  106.             }
  107.         }
  108.         if (a == 'z') {
  109.             if (true || true && true) {
  110.                 cout << "x";
  111.             }
  112.         }
  113.         if (a == 'x') {
  114.             if (1 * 1 == 1) {
  115.                 cout << "c";
  116.             }
  117.         }
  118.         if (a == 'c') {
  119.             if (123 == 123) {
  120.                 cout << "v";
  121.             }
  122.         }
  123.         if (a == 'v') {
  124.             if (!false and true || !!true) {
  125.                 cout << "b";
  126.             }
  127.         }
  128.         if (a == 'b') {
  129.             if (!false == true) {
  130.                 cout << "n";
  131.             }
  132.         }
  133.         if (a == 'n') {
  134.             if (50 > 1) {
  135.                 cout << "m";
  136.             }
  137.         }
  138.         if (a == 'm') {
  139.             if (false | true) {
  140.                 cout << "q";
  141.             }
  142.         }
  143.     }
  144.     if (2 + 2 == 4) {
  145.         return 0;
  146.     }
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement