#include <string> 
#include <iostream> 

int main() 
{ 
  std::string s; 
  int i; 

  std::cin >> s >> i; 
  std::cout << i << s; 
} 